
报错Consider defining a bean of type ‘com.xxx.service.Service‘ in your configuration.
springboot项目启动报错
Description: Field districtService in com.imp.controller.impDocController required a bean of type 'com.imp.service.impDocService' that could not be found. The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true) Action: Consider defining a bean of type 'com.imp.service.impDocService' in your configuration.这说明impDocService没有注入 1、首先检查Controller中有没有引用,并加入注解@Autowired,经检查没有问题 2、检查impDocService接口,没有问题 3、检查impDocService实现类,发现被全部注掉了,惨兮兮,解注后好了 4、实现类记得加上@Service注解
👁️ 阅读量:0
© 版权声明:本文《报错Consider defining a bean of type ‘com.xxx.service.Service‘ in your configuration.》内容均为本站精心整理或网友自愿分享,如需转载请注明原文出处:https://www.zastudy.cn/wen/1686555139a290710.html。