一、场景:
Idea写了个DAO接口,在service中注入时,报错:Could not autowire. No beans of xxx type found。
二、问题原因
原因在于DAO接口添加的@Mapper并不是Spring的注解,而是ibatis的注解,并没有声明这个DAO接口作为Spring的Bean,因此Spring不能进行管理,导致注入报错。
三、解决办法
只需在DAO接口加上@Component 或者 @Repository(@Repository实际上也包含了@Component注解)注解声明为Spring的Bean即可。
四、效果