问题
当我们在开发时使用 @Autowired 注入时 idea 报错:
Could not autowire. No beans of ‘xxx’ type found.
但项目仍然是不受影响的,若将其更换成 @Resource 后正常,为了能让报错消失,提供以下解决方案。
方案
- 老版本 idea:File -> Settings -> Editor -> Inspections -> Spring -> Spring Core -> Code -> 将 Autowiring for Bean Class 的 Severity 的级别从 Error 降为 Warning,报错即可消失。
- 新版本 idea:File -> Settings -> Editor -> Inspections -> Spring -> Spring Core -> Code -> 将 Incorrect injection point autowiring in Spring bean components 的 Severity 的级别从 Error 降为 Warning,报错即可消失。
评论区