SpringBoot: Field xxx in xxx required a bean of type 'xxx' that could not be found.
Posted Arebirth
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot: Field xxx in xxx required a bean of type 'xxx' that could not be found.相关的知识,希望对你有一定的参考价值。
SpringBoot自动注入报了如下错误
、
原因是我这个模块依赖另一个模块里面的被Spring管理的类,但是不在同一包下面,
并且启动类不是在根包下面,所以就导致了springboot启动的时候扫描不到,也就管理不到这个类,也就无法找到,
解决方案:
1.SpringBoot启动类放到包的跟包下面比如每个包都包含 cn.arebirth.xx 那就放在cn.arbeirth下面
2.设置SpringBoot扫描的包路径即可解决
以上是关于SpringBoot: Field xxx in xxx required a bean of type 'xxx' that could not be found.的主要内容,如果未能解决你的问题,请参考以下文章
springboot 报错Field XXX required a bean of type XXX that could not be found.
Unknown column 'xxx' in 'field list' 报错原因
Mysql Error:1054 Unknown column xxx.xxx_id in field list
Mybatis操作数据时出现:java.sql.SQLSyntaxErrorException: Unknown column 'XXX' in 'field list'
报错“Field pet in XXX.HelloController required a bean of type ‘XXX.Pet‘ that could not be found.“(代码片段
解决 java.sql.SQLSyntaxErrorException:Unknown column ‘xxx‘ in ‘field list‘的问题