我正在使用JPA,我想使用JTA。
DataSource和JNDI正确设置并且正常工作但是如果是数据库 是空的(尚未创建的表)JTA无效!
这就是我的意思。如果我使用以下persistence.xml:
<?xml version="1.0" encoding="UTF-8" ?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="MyUnit" transaction-type="JTA">
<jta-data-source>jdbc/MyDB</jta-data-source>
<class>de.MyEntity</class>
</persistence-unit>
</persistence>
它说MyEntity不是实体。 EntityManager无法找到它。
如果我使用此persistence.xml构建数据库并导入数据:
<?xml version="1.0" encoding="UTF-8" ?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="MyUnit" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>de.MyEntity</class>
<properties>
<property name="persistence-context.persist-on-commit" value="true"/>
<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/myDatastore" />
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"></property>
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
<property name="hibernate.connection.password" value="admin" />
<property name="hibernate.connection.username" value="admin" />
<property name="hibernate.hbm2ddl.auto" value="update"/>
</properties>
</persistence-unit>
</persistence>
效果很好!如果我现在切换回上面的persistence.xml来使用 JTA突然之间他能够找到MyEntity作为EntityManager的实体.....
那么这里的感觉在哪里?如果我想使用一个创建我的数据库 entitymanager和jta它不起作用,但如果我不使用jta创建它 当突然创建所有内容时切换回jta我可以使用jta 并且他没有抱怨。