admin管理员组文章数量:1026680
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注解
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注解
本文标签: 报错BeandefiningTypeConfiguration
版权声明:本文标题:报错Consider defining a bean of type ‘com.xxx.service.Service‘ in your configuration. 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/jiaocheng/1738335152a1562549.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论