38

目前我正在使用JPA 2.0with hibernate 3.6。我试图搜索但找不到,谁能列出JPA 2.1哪些版本的hibernate支持?

4

3 回答 3

31

Hibernate 4.3.0.Final(2013 年 12 月 16 日)是第一个支持 jpa 2.1 的生产就绪版本。

请参阅:http: //in.relation.to/Bloggers/HibernateORM430FinalRelease

4.3 的主要焦点是对 JPA 2.1 的支持,过去几个月的大部分工作都集中在 JPA 2.1 的新特性上。

于 2014-01-03T18:20:57.227 回答
25

根据Hibernate 的版本列表,JPA 2.1 将被版本 4.3 或 5.0 支持

于 2013-01-28T09:31:00.810 回答
7

鲍里斯是对的,虽然你可以尝试使用,

<dependency>
    <groupId>org.hibernate.javax.persistence</groupId>
    <artifactId>hibernate-jpa-2.1-api</artifactId>
    <version>1.0.0.Final</version>
</dependency>

在您pom.xml切换到 Hibernate 4.3.x 或 Hibernate 5.x 时。

于 2013-01-28T09:33:29.943 回答