jpa和spring-data-jpa
程序员文章站
2022-04-25 21:49:53
...
jpa
JPA(JAVA Persistence API)定义了一系列对象持久化的标准 ,是一种文本上的规范约定。目前实现jpa这种规范的产品框架有hibernate,toplink等。
spring-data-jpa
spring-data-jpa就是spring对hibernate的一个整合。
新建dao接口继承JpaRepository<T,E> 便可有crud的基本操作
public interface UserRepository extends JpaRepository<User,Integer>{
}
转载于:https://www.jianshu.com/p/1cb2e8598792
上一篇: 自定义 标签