1

对于功能的简单测试(按照教程),我尝试使用 Bitronix 和 H2 内存数据库设置原始 JTA 环境。该测试应该在一个简单的 Java 应用程序(没有 Java EE、没有服务器等)中作为单元测试运行

不幸的是,我没有让它运行,这是我的设置:

  1. 我按照教程添加了一些罐子(通过 maven):

    • btm、h2、hibernate-entitymanager 和 hibernate-jpa-2.0-api
  2. 我在类路径中添加了 persistence.xml、hibernate.cfg.xml 和 jndi.properties 文件。

  3. 在测试方法(脏...)中,我输入了以下代码:

    PoolingDataSource ds = new PoolingDataSource();
    ds.setUniqueName( "jdbc/BitronixJTADataSource" );
    ds.setClassName( "org.h2.jdbcx.JdbcDataSource" );
    ds.setMaxPoolSize( 3 );
    ds.setAllowLocalTransactions( true );
    ds.getDriverProperties().put( "user", "sa" );
    ds.getDriverProperties().put( "password", "sasa" );
    ds.getDriverProperties().put( "URL", "jdbc:h2:mem:mydb" );
    ds.init();
    
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("org.persistence.jpa");
    

这是我的 persistence.xml 配置:

<persistence-unit name="org.persistence.jpa" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>jdbc/BitronixJTADataSource</jta-data-source>
    <class>org.drools.persistence.info.SessionInfo</class>
    <class>org.drools.persistence.info.WorkItemInfo</class>
    <properties>
        <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
        <property name="hibernate.max_fetch_depth" value="3" />
        <property name="hibernate.hbm2ddl.auto" value="update" />
        <property name="hibernate.show_sql" value="true" />
        <property name="hibernate.jndi.class" value="bitronix.tm.jndi.BitronixInitialContextFactory"/> 
        <property name="hibernate.transaction.manager_lookup_class"
            value="org.hibernate.transaction.BTMTransactionManagerLookup" />
    </properties>
</persistence-unit>

而 jndi.properties:java.naming.factory.initial=bitronix.tm.jndi.BitronixInitialContextFactory

问题是:我得到了这个堆栈:

javax.persistence.PersistenceException: [PersistenceUnit: org.drools.persistence.jpa] Unable to build EntityManagerFactory
[...]
Caused by: org.hibernate.service.jndi.JndiException: Error parsing JNDI name [jdbc/BitronixJTADataSource]
[...]
Caused by: javax.naming.OperationNotSupportedException
[...]

所以这里肯定有问题。你能帮助我吗?

4

2 回答 2

1

I could solve this by using Hibernate 3.x instead of 4.x -> something must have changed but I did not investigate any further.

于 2013-09-30T13:04:18.253 回答
-1

“我可以通过使用 Hibernate 3.x 而不是 4.x 来解决这个问题 -> 肯定发生了一些变化,但我没有进一步调查。”

你所说的“可以”是指“我认为”还是你的意思是你让它与 Hibernate 3.x 一起工作?

于 2013-10-04T19:33:13.377 回答