admin管理员组

文章数量:1794759

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

报错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注解

本文标签: 报错beandefiningtypeconfiguration