No qualifying bean of type [com.hahah.atcrowdfunding.manager.service.TestService] found for depende

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.hahah.atcrowdfunding.manager.service.TestService com.hahah.atcrowdfunding.manager.controller.TestController.testService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.hahah.atcrowdfunding.manager.service.TestService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

第一次完整使用SSM,然后运行的时候报错,查了好多资料,都不好使

最后发现是忘了加@Service,添加@Component也可以用 

见Spring注解@Component、@Repository、@Service、@Controller区别

这类问题,一般是配置文件出错,或者注解出错,从这两方面查找原因

No qualifying bean of type [com.hahah.atcrowdfunding.manager.service.TestService] found for depende_第1张图片

 

 

你可能感兴趣的:(报错,ssm)