SpringMVC项目开发过程中,偶尔由于粗心导致应用启动失败,提示“org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘XXX’: Injection of autowired dependencies failed;”
记录一下自己遇到过的异常原因:
1.注解引用错误,常用注解@Component,@Controller,@Repository,@Service是org.springframework.stereotype包中注解,查看是否引入其他第三方包下同名注解
2.查看注解定义类所在路径和配置文件定义的扫描路径是不是相匹配。
其他:后续补充