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

  • 解决方法
    1、springboot 版本问题,将 2.0.1 版本换成 1.5.4 版本。
    2、将UserRepository.findOne(id); 改为 UserRepository.findById(id).orElse(null); 或
    UserRepository.findById(id).get();
  • 推荐使用第二种方式,第二种方式不用更改springboot版本 *

你可能感兴趣的:(Inferred type 'S' for type parameter 'S' is not within its bound;)