Idea工具中,使用Mapper对象有红线
Idea工具中,使用Mapper对象有红线,找到原因,并提出解决方案
背景:
IDEA开发工具,springboot +mybatis项目
(这个是不需要改的,也不算是问题,因为项目并不会报错,只是作者好奇找了下问题,并记录一下)
问题描述
mapper对象在service层有红线,项目可以正常使用,想知道为什么会出现这种情
原因分析:
@Autowired 默认是要求注解对象不为空
@Autowired 默认是要求注解对象不为空,IDEA在自动检测时认为mapper的实例是null,所以飘红提醒一下。实际使用@MapperScan,是在项目启动时才会去扫描mapper文件,并生成代理类,所以项目运行也不会报错。
这里想到@Service注解,在controller层中使用的时候就没有报红,是因为含有@Component,
@Component作用就是把注解的类实例化到spring容器中。
解决方案
这里提供4中解决方式
1、修改idea 配置
下图是通过点击标红的提示进入的,也可以从菜单上进入:file -> settings-> editor->inspections->autowiring for bean class 取消勾选,关闭 autowiring 校验。
2、@Autowired 修改为 @Autowired(required = false)
3、@Autowired 修改为 @Resource
@Resource 不校验是否为空
4、mapper 类上添加 @Repository 或者 @Component 或者lombok 中的@RequiredArgsConstructor
本质是加了 @Component 注册到项目中,满足IDEA的检验
参考链接:
更多推荐
所有评论(0)