解决: org.springframework.beans.factory.BeanNotOfRequiredTypeException
Posted 面具人生lql
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决: org.springframework.beans.factory.BeanNotOfRequiredTypeException相关的知识,希望对你有一定的参考价值。
错误信息:
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'aisleService' must be of type [com.gdie.whlocation.service.impl.AisleService], but was actually of type [$Proxy38]
这个问题出现的原因:一般在使用annotation的方式注入spring的bean 出现的,具体是由于spring采用代理的机制导致的,看使用的代码:
Java代码
- 1. 使用类注入:
- @Resource(name = "aisleService")
- private AisleService aisleService;
- 2. 使用接口注入:
- @Resource(name = "aisleService")
- private IAisleService aisleService;
代码1不能使用JDK的动态代理注入,原因是jdk的动态代理不支持类注入,只支持接口方式注入;
代码2可以使用jdk动态代理注入;
如果要使用代码1的方式,必须使用cglib代理;
当然了推荐使用代码2的方式,基于接口编程的方式!
关于spring动态代理的配置:
Xml代码
- 1.使用aop配置:
- <aop:config proxy-target-class="false"> </aop:config>
- 2. aspectj配置:
- <aop:aspectj-autoproxy proxy-target-class="true"/>
- 3. 事务annotation配置:
- <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
3种配置,只要使用一种即可,设置proxy-target-class为true即使用cglib的方式代理对象。
附:spring的aop代理判断逻辑:
Java代码
- //org.springframework.aop.framework.DefaultAopProxyFactory
- //参数AdvisedSupport 是Spring AOP配置相关类
- public AopProxy createAopProxy(AdvisedSupport advisedSupport)
- throws AopConfigException
- //在此判断使用JDK动态代理还是CGLIB代理
- if (advisedSupport.isOptimize() || advisedSupport.isProxyTargetClass()
- || hasNoUserSuppliedProxyInterfaces(advisedSupport))
- if (!cglibAvailable)
- throw new AopConfigException(
- "Cannot proxy target class because CGLIB2 is not available. "
- + "Add CGLIB to the class path or specify proxy interfaces.");
- return CglibProxyFactory.createCglibProxy(advisedSupport);
- else
- return new JdkDynamicAopProxy(advisedSupport);
Java,Spring,BeanNotOfRequiredTypeException
问题描述:
今天在使用annotation或Resource的方式注入spring的bean 的时候出现了 org.springframework.beans.factory.BeanNotOfRequiredTypeException:错误
后来看了下spring的一些解释,是未正确使用spring采用的代理机制导致了这个错误。
代码
@Resource private FormDefMappingService formDefMappingService;
代码
@Autowired private FormDefMappingService formDefMappingService;
上述的代码在只有在项目 类命名唯一否则会出现上述错误,避免上述错误在
1、检查在FormDefMappingServiceImpl是否添加@service的注解(项目中仅有一个FormDefMappingServiceImpl时可省略2、3步骤)
2、FormDefMappingServiceImpl中@service中添加name(name在项目中必须唯一)
3、在使用时@Resource或@Autowired(添加name需与@Qualifier结合)中,添加name(name与FormDefMappingServiceImpl中name相同)
代码
@Resource(name="formDefMappingService") private FormDefMappingService formDefMappingService;
代码
@Autowired(required=false) @Qualifier("formDefMappingService")
private FormDefMappingService formDefMappingService;
以上是关于解决: org.springframework.beans.factory.BeanNotOfRequiredTypeException的主要内容,如果未能解决你的问题,请参考以下文章
Not registered via @EnableConfigurationProperties, | A component required a bean of type ‘xxx‘
Not registered via @EnableConfigurationProperties, | A component required a bean of type ‘xxx‘
Not registered via @EnableConfigurationProperties, | A component required a bean of type ‘xxx‘