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ました。

アーティファクトの 1 つに依存関係Spring 3.1.4を追加するまで、使用した統合テストは正常に機能していました。hibernate-annotations (ver. 3.5.4)ダウンストリームのアーティファクトは、IllegalAccessError上記と同じものを持ち始めます。

問題の原因を突き止めようと何時間も費やした後、以前に依存関係に追加した hibernate-annotations 依存関係を変更することで問題を修正することができましたhibernate-entitymanager。これにより、ダウンストリームの統合テストの問題が修正されました。

これについて言及した私の唯一のポイントは、classpath. Maven は、異なるバージョンを持つはずのいくつかの jar (例: hibernate-common-annotations 3.2.0) を除いて、すべての hibernate バージョンを 3.5.4 として表示していました。したがって、私の場合、異なるHibernate jarを持つことについての上記のコメントは問題ではないと思います。

于 2016-04-08T20:12:25.167 に答える
0

質問は@Vikdorによって回答されました:

クラスパスに互換性のない休止状態の jar があるようです。hibernate 関連の jar とそのバージョンをリストしていただけますか?

それが問題でした。休止状態のエンティティ クラスの古いバージョンをプルしていた依存関係プロジェクトがあり、このプロジェクトは最新のものをプルしていたためです。

于 2012-11-08T17:46:22.717 に答える