IDEA 显示波浪形警告信息,但是程序没有报错

spring boot 项目,app 中自动配置 bean 的时候,IDEA 显示波浪形警告信息:

1 could not autowire. No beans of ‘UserDaoMapper’ type found.
2 Inspection info: Checks autowiring problems in a bean class

是因为 IDEA 在编译期间会为我们进行代码审查可以帮助我们发现一些错误信息,还可以设置不同的错误信息级别,在错误信息级别较高的时候进行高亮显示,不高的不进行提示。解决方法为在设置中修改:

Preference -> Editor -> inspections -> spring - spring core -> code -> autowired for bean class。

猜你喜欢

转载自www.cnblogs.com/dogeLife/p/11508491.html