1
JavaIntermediate#fundamentals
JPA is a specification (interfaces, annotations). Hibernate is the most popular implementation. JPA gives portability; Hibernate adds extra features like caching and HQL.
@Entity
class User {
@Id @GeneratedValue Long id;
String name;
} // JPA annotations; Hibernate is the JPA provider that generates the SQL