spring boot注入error,Consider defining a bean of type 'xxx' in your configuration问题解决方案
Posted lgp20151222
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot注入error,Consider defining a bean of type 'xxx' in your configuration问题解决方案相关的知识,希望对你有一定的参考价值。
经常出现这问题一定是非spring生态圈的@标签 没被spring引入,如mybatis等
因为在默认情况下只能扫描与控制器在同一个包下以及其子包下的@Component注解,以及能将指定注解的类自动注册为Bean的@[email protected]和@ Repository
那个这个时候就需要@ComponentScan
或者@MapperScan了
要是xml配置注入有这问题,麻烦一遍一遍看xml文件的配置,绝对是哪里没写匹配。
以上是关于spring boot注入error,Consider defining a bean of type 'xxx' in your configuration问题解决方案的主要内容,如果未能解决你的问题,请参考以下文章