No qualifying bean of type '.....Dao' available

出现这个错误的原因是mybatis映射错误,解决方案有两种,
1.检查文件中,配置是否正确
2.如果mybatis配置是使用注解模式,检查dao中有没有添加@MyBatisDao注解

@MyBatisDao   //注解的位置
public interface CommonDao

你可能感兴趣的:(mybatis)