mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found

Posted Cristin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found相关的知识,希望对你有一定的参考价值。

工具及背景: IntelliJ IDEA 2016.1.3 Ultimate。spring boot, maven项目,利用mybatis 注解的方式查询mysql

业务逻辑关系:controller --> Service接口 ----> serverImpl --->Dao -->DaoImpl ---> mapper -->db

问题:mapper提示Could not autowire. No beans of … type found?如图:

其中ProductDaoMyBatisMapper是个接口,用于查询mysql,结构如下图:

 

 

解决办法:将第一张图中的ProductDaoMyBatis类序列化,即实现Serializable 接口即可,如下图:

 

补:pom.xml

<!--mybatis-->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.1.1</version>
</dependency>

方法二: 还有一种方式,修改idea配置,将spring 的severity的值设置为"warning", 如下:

以上是关于mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found的主要内容,如果未能解决你的问题,请参考以下文章

mybatis的mapper-locations配置

spring boot 打印sql

Mybatis和mybatis-spring一级缓存

Spring Boot mybatis-starter原理

Spring Boot:Spring Boot整合Mybatis案例

Spring Boot 实用MyBatis做数据库操作