解决 JAP中 findOne 不能传入ID的问题

问题实例:findOne不能传入ID

不能传入ID值

问题原因:自从spring boot 2.0以后,由于用上了Java 8 的Option,废除了findone(Id)。

解决办法有两种:

1.降低SpringBoot版本

解决 JAP中 findOne 不能传入ID的问题_第1张图片

将SpringBoot版本改为 1.5.6之后,findOne可以传入ID了在这里插入图片描述

2.使用findById代替findOne,或者构造Example

//直接用findById查找
xxxx.findById(id:1).orElse(other:null);
//Example
Plus plus = new Plus();
plus.setId(1);
Example<Plus> example = Example.of(plus);
Optional<Plus> optional = plusRepository.findOne(example); 

你可能感兴趣的:(问题解决,java)