美文网首页哦,I'm coding
Inferred type 'S' for ty

Inferred type 'S' for ty

作者: 唯有口袋里的钱能给我安全感 | 来源:发表于2018-04-28 11:10 被阅读643次

在使用springboot 方法报错:

Inferred type 'S' for type parameter 'S' is not within its bound; should extends xxxxxx

解决方法:

1、springboot 版本问题,将 2.0.1 版本换成 1.5.4 版本。

2、将girlRepository.findOne(id);  改为girlRepository.findById(id).orElse(null);

相关文章

网友评论

    本文标题:Inferred type 'S' for ty

    本文链接:https://www.haomeiwen.com/subject/xqxglftx.html