📜 ⬆️ ⬇️

Java EE 6. JPA 2.0 Review, Part 1: Introduction


Perhaps the greatest number of changes with the release of the Java EE 6 specification was introduced in JPA (Java Persistence API). In a series of articles, starting with this one, I plan to tell in detail about each of the innovations.

Introduction


JPA technology is an abstraction over JDBC and allows you to be independent of SQL. All classes and JPA interfaces are located in the javax.persistence package, the main components of the technology are:


JPA 2.0 changes the following:


At the moment, the only provider of JPA 2.0 is EclipseLink , it is also a reference implementation of JPA 2.0. I have been using it for several months now and am ready to say that I find this project very stable.
')
In the next article I will talk about the innovations in the declaration of ORM.

Java EE 6. JPA 2.0 Review, Part 2: Collections

Source: https://habr.com/ru/post/88564/


All Articles