Mybatis出现Consider defining a bean of type XXX in your configuration错误解决

当我们启动spring boot项目的时候,出现了这样的问题该如何解决呢?


错误图

原因:

未在Spring boot中配置dao层接口的扫描,导致无法被项目扫描到

解决办法:

在sping boot的主要的配置类中添加上@MapperScan(basePackages = "com.XXX.dao")注解

配置图

你可能感兴趣的:(Mybatis出现Consider defining a bean of type XXX in your configuration错误解决)