报错 Inferred type 'S' for type parameter 'S' is not within its bound; 解决办法
2018年04月07日 13:27:27
阅读数:1615
Inferred type 'S' for type parameter 'S' is not within its bound;
1should extends xxxxxx
2
3
出现这种问题的原因是,springboot 版本问题,将 2。1 版本换成 1。5。4 版本。
或者是将代码改写一下
return girlRepository.findOne(id);改写为:
return girlRepository.findById(id).orElse(null);
2018年04月07日 13:27:27
阅读数:1615
Inferred type 'S' for type parameter 'S' is not within its bound;
1should extends xxxxxx
2
3
出现这种问题的原因是,springboot 版本问题,将 2。1 版本换成 1。5。4 版本。
或者是将代码改写一下
return girlRepository.findOne(id);改写为:
return girlRepository.findById(id).orElse(null);
本文解决了一个常见的Spring Boot开发问题:Inferred type 'S' for type parameter 'S' is not within its bound。介绍了如何通过调整Spring Boot版本或修改代码逻辑来避免此错误。
8888

被折叠的 条评论
为什么被折叠?



