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