Spring-Data-JPA

在使用持久化工具的时候,一般都有一个对象来操作数据库,在原生的Hibernate中叫做session,在JPA中叫EntityManager,在MyBatis中叫做SqlSesssion。通过对象来操作数据库。

对于JPA可以使用JPA的原生API来实现CURD,也可以通过JPARepository接口直接生成JPQL实现CURD。

1、原生API:


Spring-Data-JPA_第1张图片

2、JPARepository接口直接生成SQL

spring-data-jpa会根据方法的名字来自动生成sql语句,我们只需要按照方法定义的规则即可,上面的方法findByNameAndPassword,spring-data-jpa规定,方法都以findBy开头,sql的where部分就是NameAndPassword。

对于分页查询参考predicate使用方法。

Spring-Data-JPA_第2张图片

你可能感兴趣的:(Spring-Data-JPA)