在使用spring自动注入时遇到了异常。经检查是因为在bean类中自动注入了本类(写代码把自己写懵逼了)。但也想写一下出现这个异常。
出现这个异常的原因是因为在spring的上下文中找不到相应bean类。
Cause: No qualifying bean of type […] found for dependency:最经常出现的原因是就是这个原因:想要尝试注入的bean类没有定义。
@Component
public class A {
@Autowired
private B b;
...
}
1.第一种报错
:
No qualifying bean of type [] found for dependency:
expected at least 1 bean which qualifies as autowire candidate for this dependency.
Dependency annotations: {@(required=true)}
根据错误的提示可以很清楚的明白了。
需要创建B类,然后在添加@Component, @Repository, @Service, @Controller, etc注解。当然如果你注入的是抽象类或者接口,不需要在此抽象类和接口上添加这些注解。只需要在它的子类上添加上注解就可以了。
1.第二种报错
org.springblade.core.tenant.exception.TenantDataSourceException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'iDefinitionMapper' available
### The error may exist in org/springblade/app/mapper/sales/IDefinitionMapper.xml
### The error may involve org.springblade.app.mapper.sales.IDefinitionMapper.selectDefinition
### The error occurred while executing a query
### Cause: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'iDefinitionMapper' available
我就改了一个名字,然后就报这个识别问题,最后解决方法是删除了对应mapper和xml文件,重新弄了一个换了一个名字,光删除了还叫那个名字也不行,我这边还需要注意一下数据库切换的问题,即可解决问题。