Could not autowire. No beans of 'RedisUtil' type found.
时间: 2023-11-17 22:51:32 浏览: 25
Idea 解决 Could not autowire. No beans of 'xxxx' type found 的错误提示
5星 · 资源好评率100%
这个错误提示意味着在注入RedisUtil时,Spring容器找不到与之对应的bean。解决这个问题的方法是将@Autowired替换为@Resource。@Resource注解是J2EE提供的注解,它默认按照名称进行注入,可以减少Spring的耦合度。而@Autowired注解是Spring提供的注解,它默认按照类型进行注入。
阅读全文