Spring Boot2.X中findOne的使用详解
程序员文章站
2022-06-25 21:05:58
目录spring boot2.x中findone的用法但在2.x中,findone改为了jparepository.findone()在springboot1.x和2.x中的不同的用法在使用sprin...
spring boot2.x中findone的用法
springboot在1.5.x版本中,传入id即可查询对象
xxxrepository.findone(id);
但在2.x中,findone改为了
<s extends t> optional<s> findone(example<s> var1);
getone方法继续保留了,但是如果getone(id)查询到的即使id不存在,也会返回该对象的引用,判断null无效。
后来找到了这种写法可以实现
findone. xxxrepository.findbyid(id).orelse(null)
jparepository.findone()在springboot1.x和2.x中的不同的用法
已有开发环境如下
- windows平台
- jdk1.8、maven已配置
- 开发工具:intellij idea
在使用springboot 1.5.6.release时
jparepository支持findone(id)方法
t findone(id id); <s extends t> optional<s> findone(example<s> example);
2.x版本已无法使用 t findone(id id)
下面是解决办法
@override public ayuser selectayuserbyid(integer id) { ayuser ayuser = new ayuser(); ayuser.setid(id); example<ayuser> example = example.of(ayuser); optional<ayuser> optional = ayuserrepository.findone(example); if (optional.ispresent()){ ayuser=optional.get(); return ayuser; }else{ return null; } }
记录一下,方便查询!
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。