原文:SpringBoot: Field xxx in xxx required a bean of type 'xxx' that could not be found.

SpringBoot自动注入报了如下错误 原因是我这个模块依赖另一个模块里面的被Spring管理的类,但是不在同一包下面, 并且启动类不是在根包下面,所以就导致了springboot启动的时候扫描不到,也就管理不到这个类,也就无法找到, 解决方案: .SpringBoot启动类放到包的跟包下面比如每个包都包含 cn.arebirth.xx 那就放在cn.arbeirth下面 .设置SpringBo ...

2020-01-03 20:26 0 1093 推荐指数:

查看详情

Field XXX in XXXX required a bean of type XXXX that could not be found

这个报错的意思是:没有找到相应的bean。 出现这个情况我遇到了两种: 1.spring没有扫描到相应的bean。 原因是springboot项目启动,只有@SpringBootApplication 所在的包被被扫描,如果有其他需要扫描的包,需要显式写明 ...

Sat Oct 27 18:53:00 CST 2018 0 10210
 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM