Error creating bean with name 'questionListAssignController': Injection of resource dependencies failed;
时间: 2023-12-29 10:25:08 浏览: 81
消息队列监听器无法注入bean的问题解决
根据提供的引用内容,出现“Error creating bean with name 'questionListAssignController': Injection of resource dependencies failed”错误通常是由于Spring框架中的依赖注入出现问题导致的。具体而言,可能是由于@Resource注解注入时没有指定bean的名称,或者是由于没有正确配置Spring MVC等原因导致的。
解决这个问题的方法包括:
1. 确认@Resource注解是否正确指定了bean的名称,例如:@Resource(name = "xxx")。
2. 检查Spring配置文件是否正确配置,例如:是否正确扫描了需要注入的bean所在的包。
3. 检查依赖的jar包是否正确引入,例如:是否缺少了某些依赖的jar包。
下面是一个可能的解决方案:
```java
@Resource(name = "infoDao")
private InfoDao infoDao;
```
阅读全文