报错 Inferred type 'S' for type parameter 'S' is not within its bound; 解决办法
Inferred
type
'S'
for
type
parameter 'S'
is
not
within its bound;should extends xxxxxx
出现这种问题的原因是,springboot 版本问题,我将使用的 2.1 版本换成 1.5.4 版本。
或者是将代码改写一下
return
girlRepository
.findOne
(
id
);
return
girlRepository.findById(id).orElse(
null
);