Ayusman
Ayusman

Reputation: 8719

Which version of Hibernate is JPA 1.0 compliant

Which version of hibernate is JPA 1.0 compliant. I know Hibernate 3.6 that we are using supports JPA 2.0

Upvotes: 8

Views: 8524

Answers (2)

Ushox
Ushox

Reputation: 758

I realize this is an old question, but in case someone stumbles on it, I'd like to add the following:

The Hibernate download page states that: "...newer ORM releases are backwards compatible with older JPA versions (ex: ORM 4.3 with JPA 1.0)..."

Upvotes: 0

axtavt
axtavt

Reputation: 242706

Hibernate with JPA support is packaged as Hibernate EntityManager, and it's latest version with JPA 1.0 support is 3.4.0.GA (it includes version 3.2.0.GA of Hibernate Core).

Upvotes: 7

Related Questions