?1 " />

?1"/>
 首页 > 作文

关于@Query注解的用法(Spring Data JPA)

更新时间:2023-04-06 03:13:57 阅读: 评论:0

@query注解的用法

1.一个使用@query注解的简单例子

@query(value = "lect name,author,price from book b where b.price>?1 and b.price<?2")list<book> findbypricerange(long price1, long price2);

2.like表达式

@query(value = "lect name,author,price from book b where b.name like %:name%")list<book> findbynamematch(@param("name") string name);

3.使用native sql query

所谓本地查询,就是使用原生的sql语句(根据数据库的不同,在sql的语法或结构方面可能有所区别)进行查询数据库的操作。

@query(value = "lect * from book b where b.name=?1", nativequery = true)优美语句摘抄list<book> findbyname(string name);

4.使用@param注解注入参数

@query(value = "lect name,author,price from book b where b.name = :name and b.author=:author and b.price=:price")list<book> findbynamedparam(@param("name") string name, @param("author") string author,    @param("price") long price);

5.spel表达创新作文题目式(使用时请参考最后的补充说明)

‘#{#entityname}’值为’book’对象对应的数据表名称(book)。

public interface bookqueryrepositoryexample extends repository<book, long>{   @query(value = "lect * from #{#entityname} b where b.name=?1", nativequery = true)   list<book> findbyname(string name);}

6.一个较完整的例子

public interface bookqueryrepositoryexample extends repository<book, long> {  @query(value = "lect * from book b where b.name=?1", nativequery = true)  list<book酒的危害> findbyname(string name);// 此方法sql将会报错(java.lang.illegalargumentexception),看出原因了吗,若没看出来,请看下一个例子  @query(value = "lect name,author,price from book b where b.price>?1 and b.price<?2")  list<book> findbypricerange(long price1, long price2);  @query(value = "lect name,author,price from book b where b.name like %:name%")  list<book> findbynamematch(@param("name") string name);  @query(value = "lect name,author,price from book b where b.name = :name and b.author=:author and b.price=:price")  list<book> findbynamedparam(@param("name") string name, @param("author") string author,      @param("price") long price);}

7.解释例6中错误的原因

因为指定了nativequery = true,即使用原生的sql语句查询。使用java对象’book’作为表名来查自然是不对的。只需将book替换为表名book。

@query(value = "lect * from book b where b.name=?1", nativequery = true)list<book> findbyname(string name);

补充说明:

有同学提出来了,例子5中用’#{#entityname}’为啥取不到值啊?

先来说一说’#{#entityname}’到底是个啥。从字面来看,’#{#entityname}’不就是实体类的名称么,对,他就是。

实体类book,使用@entity注解后,spring会将实体类book纳入管理。默认’#{#entityname}’的值就是’book’。

但是如果使用了@entity(name = “book”)来注解实体类book,此时’#{#entityname}’的值就变成了’book’。

到此,事情就明了了,只需要在用@entity来注解实体类时指定name为此实体类对应的表名。在原生sql语句中,就可以把’#{#entityname}’来作为数据表名使用。

@query注解使用详情

常用属性

value : 取值,要么使用原生sql,要么使用jpqlnativequery :表示是否采用原生sql,诸如lect * from tablename

取值方式

1、使用:形参名

示例:

单个形参的情况

多个形参的情况:

2、使用?数值,数值表示形参位置,1表示第一个形参,依次内推

示例:

单个形参的情况:

多个形参的情况:

特殊情况:数值也可不写,若不写具体的数值,默认是从1开始递增,如下图示例:

3、使用@param(“参数名”)+:参数名

通常使用@param注解都是在多个形参的情况下使用

4、获取实体类名称,使用#{#entityname}

ucl世界排名

crud

使用@query注解实现删、改、查、增的示例,如下所示:

@modifying@transactional@query(热血沸腾的歌value = "delete from ur where id = ?1")void deletebyurid(integer id);

?后面的数值1,表示第一个形参的值,以此类推,如果方法有多个形参,数值也会依次递增,特殊情况,数值也可不写,若不写具体的数值,默认是从1开始递增

@modifying@transactional@query("update ur t email = ?1 where id = ?2")void updateur(string email,integer id);
@query(value = "lect * from tb_ur where email like concat('%',?2,'%') and urname like concat('%',?1,'%') ",nativequery = true)ur findbyurnameandemail( string urname, string email);
@modifying@transactional@query(value = "inrt into tb_ur(email,id_card,urname,wage) values (:email,:idcard,:urname,:wage)",nativequery = true)void inrtur(string email,string idcard,string urname,double wage);

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

本文发布于:2023-04-06 03:13:56,感谢您对本站的认可!

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

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

本文word下载地址:关于@Query注解的用法(Spring Data JPA).doc

本文 PDF 下载地址:关于@Query注解的用法(Spring Data JPA).pdf

标签:注解   数值   多个   情况
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图