What is a JPA implementation?

后端 未结 5 1347
一生所求
一生所求 2020-12-04 13:35

I\'m getting started with JPA, and I\'m confused as to what exactly the JPA implementation(EclipseLink, TopLink, Hibernate, etc.) does.

I understand the theoretica

5条回答
  •  离开以前
    2020-12-04 14:07

    JPA is a Java API specification which describes the management of relational data in applications using Java Platform. You can think JPA as a set of Rules, and hence it can not do any concrete work for you but helps you to standardize your implementation.

    So you need concrete implementation which will implements JPA (set of rules). Hibernate, OpenJPA are few of famous JPA implementations.

提交回复
热议问题