代码改变世界

SpringBoot Inferred type 'S' for type parameter 'S' is not within its bound; 解决办法

2018-09-03 21:32  hello_leon  阅读(2269)  评论(0编辑  收藏  举报
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);

转自https://blog.csdn.net/HeatDeath/article/details/79840834