1.将所需的Hibernate .jars复制到<tomee-home>/lib
根据文档(http://tomee.apache.org/tomee-and-hibernate.html),以下内容就足够了,实际上它们对我有用:
<tomee-home>/lib/antlr-2.7.7.jar
<tomee-home>/lib/dom4j-1.6.1.jar
<tomee-home>/lib/hibernate-commons-annotations-4.0.2.Final.jar
<tomee-home>/lib/hibernate-core-4.2.21.Final.jar
<tomee-home>/lib/hibernate-entitymanager-4.2.21.Final.jar
<tomee-home>/lib/hibernate-validator-4.3.2.Final.jar
<tomee-home>/lib/javassist-3.18.1-GA.jar
<tomee-home>/lib/jboss-logging-3.1.0.GA.jar
所有这些.jars
都包含在 Hibernate ORM 4.2.x 下载 ( http://hibernate.org/orm/ ) 中,除了 Hibernate Validator,它是一个单独的下载 ( http://hibernate.org/validator/ )。
2. 编辑你的 pom.xml
使用javaee-api
具有范围的 maven 工件provided
现在可以在您的项目中使用 JPA 规范。但是,如果你之前一直在使用一些 Hibernate 特定的特性、类或注解,你仍然可以在你的中引用 Hibernatepom.xml
来匹配这些依赖项:
<!-- JPA spec (required) -->
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0-4</version>
<scope>provided</scope>
</dependency>
<!-- Hibernate specific features (only if needed) -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.2.21.Final</version>
<scope>provided</scope>
</dependency>
3. 定义你的数据库连接
编辑<tomee-home>/conf/tomee.xml
:
<Resource id="myJtaDatabase" type="DataSource">
JdbcDriver com.mysql.jdbc.Driver
JdbcUrl jdbc:mysql://localhost:3306/my_dbname?autoReconnect=true
UserName foo
Password bar
validationQuery = SELECT 1
JtaManaged true
</Resource>
您也可以将上述<Resource>...</Resource>
定义放入WEB-INF/resources.xml
并随您的应用程序一起发布:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<!-- Put <Resource> elements here -->
<resources>
4. JTA 数据源
既然您告诉了 TomEE 如何建立连接,请在以下位置定义一个 JTA 数据源/src/main/java/META-INF/persistence.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0"
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_2_0.xsd">
<persistence-unit name="my_persistence_unit">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:openejb/Resource/myJtaDatabase</jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<!-- As many hibernate properties as you need, some examples: -->
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="true" />
<!-- Drop and then re-create the database schema (don't do this in production) -->
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>
5.开始使用JPA
EntityManager
像这样在 CDI bean 或 EJB 中获取一个:
@PersistenceContext(unitName = "my_persistence_unit")
private EntityManager em;
最后的笔记
休眠版本 4.3+
我正在使用 Hibernate 4.2.21(JPA 2.0,Java EE 6)和 TomEE 1.7.2。任何 TomEE 1.7.x、1.6.x 和 1.5.x 都可以使用。但是,您不能使用 Hibernate 4.3+ (JPA 2.1 / Java EE 7),因为 TomEE 1.7.x 及以下版本仅支持 Java EE 6。如果您真的想将 Java EE 7 功能与 TomEE 一起使用,这篇博文可能会有所帮助:http ://rmannibucau.wordpress.com/2013/07/19/little-tip-to-help-you-to-test-javaee-7-in-tomee-with-tomee-maven-plugin/
汤姆EE 1.5.x
TomEE 1.5.x 已经包含一个javassist-<version>.jar
,因此您不必复制一个。