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区别
这类问题,一般是配置文件出错,或者注解出错,从这两方面查找原因


本文通过解决一个具体的Spring框架中BeanCreationException错误,强调了在SSM框架中正确使用@Service注解的重要性。作者在尝试使用SSM框架进行项目开发时遇到了依赖注入失败的问题,最终发现是因为缺少@Service注解导致的。文章详细描述了问题的排查过程,并解释了@Service、@Component等注解在Spring框架中的作用。
1875

被折叠的 条评论
为什么被折叠?



