No matching bean of type dao found for depende
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了No matching bean of type dao found for depende相关的知识,希望对你有一定的参考价值。
场景:
Spring MVC + MyBatis
启动服务失败,控制台打印一系统异常。
异常大意如下:
xxxService 加载 xxxInterface 或 xxxMapper 失败
最后一条异常 No matching bean of type 【xxxService】 found for depende
思考:
从异常本身看:找不到依赖或加载错误的接口很早以前就已经存在了,所以不会有问题
所以从最新修改或新增的接口上查找问题。定位到 xxxService
解决:
通常 No matching bean of type dao found for depende 异常出现,原因在于 ServiceImpl 未加@Service 标签
但此xxxService 是已经存在的,对比历史版本,尝试注释掉新增的代码
定位原因:一个同事在写接口实现的时候,凭空加了新的方法,但新的方法未写实现,即抽象方法,然后他根据 Eclipse 的提示,将当前的 ServiceImpl 的 class 改为了 abstract class ,所以运行异常
心得:
遇到加载异常或依赖找不到的问题导致服务启动失败,快速定位新增的接口或接口中的方法,快速查找问题,Service 即 ServiceImpl 类中查找问题
自测,Junit 自测,代码一定要自测通过之后再提交,否则,不仅坑自己,也坑队友啊。
本文出自 “工作常用工具类” 博客,请务必保留此出处http://mingyundezuoan.blog.51cto.com/4012317/1934278
以上是关于No matching bean of type dao found for depende的主要内容,如果未能解决你的问题,请参考以下文章
Spring报错No unique bean of type [com.xxx.Task] is defined: expected single matching bean but found 3(
No qualifying bean of type:scanBasePackages
解决 No qualifying bean of type 问题
No qualifying bean of type报错问题处理