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?如图:

mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found_第1张图片

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

mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found_第2张图片

 

 

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

mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found_第3张图片

 

补:pom.xml



org.mybatis.spring.boot
mybatis-spring-boot-starter
1.1.1


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

mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found_第4张图片


链接: http://blog.csdn.net/xlxxybz1314/article/details/51404700

转载于:https://www.cnblogs.com/jamieYu/p/5681886.html

你可能感兴趣的:(java,开发工具,数据库)