SpringBoot常见报错及解决方法
作者:互联网
问题一
Field redisUtil in com.sui.demo.controller.redisController required a bean of type 'com.sui.demo.util.RedisUtil' that could not be found
原因:
未扫描到RediUtil包,无法用spring ioc容器自动创建对象
解决方法一:
去掉@Autowired注解,手动创建对象 private JedisPool jedisPool= new JedisPool();
解决方法二:
启动类手动添加扫描该包
标签:SpringBoot,demo,常见,扫描,创建对象,sui,JedisPool,报错,com 来源: https://www.cnblogs.com/lynnetest/p/10899120.html