Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

时间:2024-05-20 12:36:00

1、我搭建spring boot+mybatis框架的目录结构

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

2、首先看一下我的配置文件

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

3、在Memberscontroller直接可以使用@Autowired 注解MembersMapper . 就可以使用MembersMapper 中的所有方法。但是在我的IDEA里面出现了下面的情况 : 

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

IDEA告诉我这个不能注入 , 找不到bean , 其实这是因为IDEA里面检查的问题

4、解决办法

因为spring检查的级别是error级别 , 我们需要改成Warning级别就可以了 . 

在Itellij IDEA中找到 File-->setting-->Inspections

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

把Severity中的error级别改成warning级别 就可以了。

Intellij IDEA在controller中使用@Autowired注解,出现could not autowire错误,解决办法

5、点击apply,ok.问题解决。