Victor
Victor

Reputation: 17107

Hibernate JPA compliant

In this article on thserverside.com:
http://www.theserverside.com/news/thread.tss?thread_id=42651
It mentions :"JBoss has released Hibernate 3.2, their popular persistence engine, now certified compliant with the Java Persistence API."
What does this mean : "now certified compliant with the Java Persistence API."
Was not the old Hibernate (or for that matter any ORM tool) built as an implementation of JPA?

Upvotes: 0

Views: 1055

Answers (1)

Aravind Yarram
Aravind Yarram

Reputation: 80192

There was no JPA during initial days of Hibernate. Hibernate is the first (purely my opinion) open source library that brought ORM to the main stream Java development. JPA spec came much after the Hibernate was released. Hibernate naturally also implemented the spec and it still can support Hibernate specific annotations. Now you can mix JPA+Hibernate stuff together in 1 single app by making Hibernate the JPA provider.

Upvotes: 2

Related Questions