4

我创建了一个 jUnit 测试来测试我的代码,当我尝试实例化我的对象时,我收到了这个错误

java.lang.IllegalAccessError: tried to access method org.hibernate.cfg.Configuration.<init>(Lorg/hibernate/cfg/SettingsFactory;)V from class org.hibernate.ejb.Ejb3Configuration
    at org.hibernate.ejb.Ejb3Configuration.<init>(Ejb3Configuration.java:134)
    at org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:124)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:63)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:47)
    at gov.ic.isso.sentry.rest.data.CeReportDaoImpl.init(CeReportDaoImpl.java:41)
    at gov.ic.isso.sentry.rest.data.DaoBase.<init>(DaoBase.java:20)
    at gov.ic.isso.sentry.rest.data.CeReportDaoImpl.<init>(CeReportDaoImpl.java:33)
    at gov.ic.isso.sentry.rest.AppTest.testApp(AppTest.java:41)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at junit.framework.TestCase.runTest(TestCase.java:168)
    at junit.framework.TestCase.runBare(TestCase.java:134)
    at junit.framework.TestResult$1.protect(TestResult.java:110)
    at junit.framework.TestResult.runProtected(TestResult.java:128)
    at junit.framework.TestResult.run(TestResult.java:113)
    at junit.framework.TestCase.run(TestCase.java:124)
    at junit.framework.TestSuite.runTest(TestSuite.java:243)
    at junit.framework.TestSuite.run(TestSuite.java:238)
    at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)

我的 init 方法的代码是

protected void init() {
        emf = Persistence.createEntityManagerFactory("ceDataSessionData");

        em = emf.createEntityManager();
    }

我的 jUnit 测试是

 public void testApp()
    {
        CeReportDao reportDao = new CeReportDaoImpl();
        try {
            reportDao.getMoneyTransferReportJson(100, "TESTUSER1", "NS", null);
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }
4

2 回答 2

1

我意识到这是一个旧线程,但我只是想添加一些额外的信息。我在我们的Java 1.7项目中使用maven 3.3.3.

在我将依赖项添加到我们的一个工件之前,我们使用的集成测试Spring 3.1.4运行良好。hibernate-annotations (ver. 3.5.4)然后下游工件开始具有上述相同IllegalAccessError内容。

在花了几个小时试图找出问题的原因之后,我能够通过更改我之前添加到hibernate-entitymanager依赖项中的 hibernate-annotations 依赖项来修复它。这解决了下游集成测试问题。

我提到这一点的唯一一点是要注意,我从来没有在classpath. Maven 将所有休眠版本显示为 3.5.4,除了一些应该具有不同版本的 jar(例如,hibernate-common-annotations 3.2.0)。所以,我相信上面关于拥有不同 Hibernate jar 的评论不是我的问题。

于 2016-04-08T20:12:25.167 回答
0

@Vikdor 已回答问题:

似乎是类路径中不兼容的休眠 jar。您能否列出与休眠相关的 jar 及其版本?

这就是问题所在。我有一个依赖项目,它正在为休眠提取旧版本的实体类,因此该项目正在提取最新版本。

于 2012-11-08T17:46:22.717 回答