So verwenden Sie Atomikos Transaction Essentials im Ruhezustand> = 4.3

Ich habe von Hibernate 4.2 auf Hibernate 4.3 umgestellt und mein Projekt funktioniert nicht mehr. Ich bekomme eine

HibernateException: Aktuelle JTA-Transaktion kann nicht gefunden werden

wenn ich es tue

Session s = sessionFactory.getCurrentSession();

Ich habe festgestellt, dass org.hibernate.transaction.TransactionManagerLookup nicht mehr existiert. Es wurde in Hibernate 4.3 gelöscht. Wie soll ich meine aktuelle Konfiguration ändern?

<hibernate-configuration>
<session-factory>
    <property name="connection.datasource">testDS</property>

    <property name="current_session_context_class">jta</property>
    <property name="transaction.manager_lookup_class">com.atomikos.icatch.jta.hibernate3.TransactionManagerLookup</property>
    <property name="transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property>
    <property name="connection.release_mode">auto</property>
    <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

    <property name="hibernate.hbm2ddl.auto">create-drop</property>
    <property name="hibernate.show_sql">true</property>
    <mapping class="test.entities.Person" />
    <mapping class="test.entities.CreditCard" />
    <mapping class="test.entities.ExampleRevEntity" />
</session-factory>

Antworten auf die Frage(5)

Ihre Antwort auf die Frage