idea 代码格式问题

01,Could not autowire. No beans of 'UserMapper' type found

1,问题描述,通过反射动态实现的接口在调用时会出现以上提示,常见的如 ORM 框架的 Dao 层
2,该错误不是代码问题,可以手动关闭该错误
3,File > Setting > Editor > Inspections - Spring > Spring Core > Code > Autowiring for Bean Class


image.png

02,Found duplicated code

1,问题描述,当连个文件中出现相同的 java 代码时,会出现以下烦人的波浪线提示


image.png

2,File > Setting > Editor > Inspections,在右边的搜索框输入:Duplicated code


image.png

03, @Autowired 字段注入警告去除

1,在右边的搜索框输入:Field injection warning


image.png

你可能感兴趣的:(idea 代码格式问题)