首页 > 作文

继承jpa Repository 写自定义方法查询实例

更新时间:2023-04-04 01:37:38 阅读: 评论:0

目录
继承jpa repository写自定义方法查询首先定义实体类项目报错提示信息为是什么原因呢?jparepository 命名规范

继承jpa repository写自定义方法查询

今天在写jpa查询的时候,遇到了添加自定义方法,项目启动报错原因,现总结如下:

首先定义实体类

@entity@table(name = "ur")class ur{     @id    @generatedvalue       int id;      @column      string age;      @column      string school;      @column      string urname;  t,get方法 (省略) }
public interface urrepository extends jparepository<ur, long> {      list<ur> findbyurnamelike(string urname);     list<ur> aaa();}

启动项目时,

项目报错提示信息为

org.springframework.data.mapping.propertyreferenceexception: no property aaa found for type com.fpi.safety.common.entity.po.ur

再将list<ur> aaa();方法去掉后,项目又可以正常启动运行

是什么原因呢?

经查找,原来是继承jpa,必须满足一些规则,规则如下

spring data jpa框架在进行方法名解析时,会先把方法名多余的前缀截取掉,比如find,findby,read,readby,get,getby,然后对剩下的部分进行解析。

假如创建如下的查询:findbyurname(),框架在解析该方法时,首先剔除findby,然后对剩下的属性进行解析,假设查询实体为ur

1:先判断urname(根据pojo规范,首字母变为小写)是否为查询实体的一个属性,如果是,则表示根据该属性进行查询;如果没有该属性,继续第二步;

2:从右往左截取第一个大写字母开头的字符串此处是name),然后检查剩下的字符串是否为查询实体的一个属性,如果是,则表示根据该属性进行查询;如果没有该属性,则重复第二步,继续从右往左截取;最后假设用户为查询实体的一个属性;

3:接着处理剩下部分(urname),先判断用户所对应的类型是否有urname属性,如果有,则表示该方法最终是根据“ur.urname”的取值进行查询;否则继续按照步骤2的规则从右往左截取,最终表示根据“ur.urname”的值进行查询。

4:可能会存在一种特殊情况,比如ur包含一个的属性,也有一个urnamechange属性,此时会存在混合。可以明确在属性之间加上“_”以显式表达意思,比如“findbyur_namechange )“或者”findbyurname_change()“

从上面,我们可以得知,jap在解析是,aaa在ur类中是没有属性的,所以报错no property aaa found.

如果我们想要使用jap框架,又不想再多增加一个自定义类,则必须符合其命名规则

如果,你记不住jpa的规则也没关系,你可以自己再多写一个类来实现自定义查询方法

如下:

1. 自定义一个接口,该接口用来声明自己国家安全宣传日额外定义的查询。

public interface uerrepositorytwo {    public list<ur> archur(string name, int id);}

2. 创建一个接口,该接口 extends 财经院校jparepository 或者 curdrepository, 以及上面自己定义的接口 uerrepositorytwo

public interface urrepositorytworvice extends crudrepository<logdto, integer>, customizedlogrepository {}

3. 实现urrepositorytworvice

注意此处的类名,必须以 2 中创建的接口的名字urrepositorytworvice,后面加上 impl 来声明,而不是写成 uerrepositorytwoimpl

public class urrepositorytworviceimpl implements urrepositorytworvice {    @autowired    @persistencecontext    private entitymanager entitymanage中国射击r;    @override    public list<ur> archlogs(int id支付宝福字扫描, string name) {        ......    }}

自己在写自定义实现即可~

jparepository 命名规范

keywordsamplejpqlandfindbylastnameandfirstnamewhere x.lastname=?1 and x.firstname=?2orfindbylastnameorfirstnamewhere x.lastname=?1 or x.firstname=?2betweenfindbystartdatebetweenwhere x.startdate between ?1 and ?2lessthanfindbyagelessthanwhere x.startdate < ?1greaterthanfindbyagegreaterthanwhere x.startdate >?1afterfindbystartdateafterwhere x.startdate >n ?1beforefindbystartdatebeforewhere x.startdate < ?1isnullfindbyageisnullwhere x.age is nullisnotnull,notnullfindbyage(is)notnullwhere x.age not nulllikefindbyfirstnamelikewhere x.firstname like ?1notlikefindbyfirstnamenotlikewhere x.firstname not like ?1startingwithfindbyfirstnamestartingwithxxxwhere x.firstname like ?1(parameter bound with appended %)endingwithfindbyfirstnameendingwithxxxwhere x.firstname like ?1(parameter bound with appended %)containingfindbyfirstnamecontainingwhere x.firstname like ?1(parameter bound wrapped in %)orderbyfindbyageorderbylastnamewhere x.age = ?1 order by x.lastname descnotfindbylastnamenotwhere x.lastname <> ?1notinfindbyagenotin(collection age )where x.age not in ?1truefindbyactivetrue()where x.active = truefalfindbyactivefal()

where x.active = fal

例:

@repositorydefinition(domainclass = employee.class, idclass = integer.class)public interface employeerepository { //extends repository<employee,integer>{    public employee findbyname(string name);    // where name like ?% and age <?    public list<employee> findbynamestartingwithandagelessthan(string name, integer age);    // where name like %? and age <?    public list<employee> findbynameendingwithandagelessthan(string name, integer age);    // where name in (?,?....) or age <?    public list<employee> findbynameinoragelessthan(list<string> names, integer age);    // where name in (?,?....) and age <?    public list<employee> findbynameinandagelessthan(list<string> names, integer age);    @query("lect o from employee o where id=(lect max(id) from employee t1)")    public employee getemployeebymaxid();    @query("lect o from employee o where o.name=?1 and o.age=?2")    public list<employee> queryparams1(string name, integer age);    @query("lect o from employee o where o.name=:name and o.age=:age")    public list<employee> queryparams2(@param("name")string name, @param("age")integer age);    @query("lect o from employee o where o.name like %?1%")    public list<employee> querylike1(string name);    @query("lect o from employee o where o.name like %:name%")    public list<employee> querylike2(@param("name")string name);    @query(na二年级排比句tivequery = true, value = "lect count(1) from employee")//这个使用了原生sql    public long getcount();    @modifying    @query("update employee o t o.age = :age where o.id = :id")    public void update(@param("id")integer id, @param("age")integer age);}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 01:37:37,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/8382d8de963f0cc3443839311cf757a6.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:继承jpa Repository 写自定义方法查询实例.doc

本文 PDF 下载地址:继承jpa Repository 写自定义方法查询实例.pdf

标签:属性   自定义   方法   接口
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图