美文网首页
Spring-Data-JPA

Spring-Data-JPA

作者: Artanis_42f2 | 来源:发表于2017-07-31 17:22 被阅读0次

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

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

    1、原生API:

    2、JPARepository接口直接生成SQL

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

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

    相关文章

      网友评论

          本文标题:Spring-Data-JPA

          本文链接:https://www.haomeiwen.com/subject/pvsrlxtx.html