原来:
typeRepository.findOne(id); //报错
检查自己使用的SpringBoot 的版本是否是2.0以上,是的话直接改为:
typeRepository.findById(id).get()
完成!