?1 " />
@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);
所谓本地查询,就是使用原生的sql语句(根据数据库的不同,在sql的语法或结构方面可能有所区别)进行查询数据库的操作。
@query(value = "lect * from book b where b.name=?1", nativequery = true)优美语句摘抄list<book> findbyname(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);
‘#{#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);}
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);}
因为指定了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}’来作为数据表名使用。
value
: 取值,要么使用原生sql,要么使用jpqlnativequery
:表示是否采用原生sql,诸如lect * from tablename1、使用:形参名
示例:
单个形参的情况
多个形参的情况:
2、使用?数值,数值表示形参位置,1表示第一个形参,依次内推
示例:
单个形参的情况:
多个形参的情况:
特殊情况:数值也可不写,若不写具体的数值,默认是从1开始递增,如下图示例:
3、使用@param(“参数名”)+:参数名
通常使用@param注解都是在多个形参的情况下使用
4、获取实体类名称,使用#{#entityname}
ucl世界排名使用@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 条评论) |