解决springbootmapper注⼊报红问题⽬录
springboot mapper注⼊报红
在mapper接⼝上加上
spring boot选择题@Autowired⾃动注⼊时,mapper标红
为什么会标红?
解决⽅法
springboot mapper注⼊报红
在mapper接⼝上加上
@Component注解
例如:
好了,红线没了。
@Autowired⾃动注⼊时,mapper标红
问题:SpringBoot中,service层使⽤@Autowired⾃动注⼊时,mapper标红
为什么会标红?
我们使⽤的@Mapper和@MapperScan并不是spring框架的注解,未在spring容器中注册为bean;
解决⽅法
使⽤@Resource代替@Autowired注解,根据类型注⼊改为根据名称注⼊;
将注解@Autowired 改为(@Autowired(required = false)),表⽰注⼊时,⾃动注⼊的类为⾮必须;
@Autowired(required = false)
private UserMapper userMapper;
Setting -> Inspections -> 搜索spring bean,到Spring Bean Autowired,把红⾊(Error)修改为黄⾊(Warning);问题解决~~~
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论