解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found
作者:mmseoamin日期:2023-12-18

问题:找不到mapper注入的bean,如图

解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found,第1张

 

分析:注入mapper有两种方式:

 第一种:在启动类中添加  @MapperScan

解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found,第2张

       然后在mapper的类中添加  @Repository 注解

解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found,第3张

第二种方法:直接在各个mapper类中添加@Mapper注解,但是一定要注意导入正确的包,否则解决不了这个异常

解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found,第4张

解决SpringBoot项目中的报错:Could not autowire,no beans of “XXX“ type found,第5张

 很多新手在使用@Mapper的时候还是报异常,多数是因为导入了错误的包导致的(可能设置了idea自动导包的功能从而没有在意)。

问题解决~~