jpa和spring-data-jpa

jpa

JPA(JAVA Persistence API)定义了一系列对象持久化的标准 ,是一种文本上的规范约定。目前实现jpa这种规范的产品框架有hibernate,toplink等。

spring-data-jpa

spring-data-jpa就是spring对hibernate的一个整合。
新建dao接口继承JpaRepository 便可有crud的基本操作

public interface UserRepository extends JpaRepository{
}

你可能感兴趣的:(jpa和spring-data-jpa)