- 问题
IntelliJ IDEA 对@Autowired代码检查报错。
@Autowired
private DemoBusinessService businessService;
- 解决(两种方案)
方案1:添加注解 @SuppressWarnings("SpringJavaAutowiringInspection")
@Autowired
@SuppressWarnings("SpringJavaAutowiringInspection")
private DemoBusinessService businessService;
方案2:修改IntelliJ IDEA 代码查检级别。
File --> Settings打开设置,
在Editor --> Inspections中,
修改Spring Core --> Code --> Autowiring for Bean Class 是否检查 或 其Severity。
WD_IBMMWH(GP}MAZLC{89}V.png
网友评论