最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

报错Consider defining a bean of type ‘com.xxx.service.Service‘ in your configuration.

运维笔记admin3浏览0评论

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)

  1. 暂无评论