关于NoSuchBeanDefinitionException的错误

NoSuchBeanDefinitionException: No qualifying bean of type ‘com.qianfeng.provider.dao.user.UserMapper’ available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
原因排查

  1. 配置扫描bean时没有扫描到dao层所在的包


2. dao层类上没有添加@Repository注解

@Repository
public interface UserMapper extends BaseMapper {}
3. 配置接口层映射mybatis查询时,没有配置dao层扫描器

我的错误是扫描dao所在的包的而时候,原来的包的路径是 我写成了 这是错误的 中间有两层文件夹,应该写成: **成功了没有?**

你可能感兴趣的:(关于NoSuchBeanDefinitionException的错误)