@Async通过代理类在Spring 3.2中创建一个异常

时间:2013-08-30 12:38:46

标签: java spring cglib spring-scheduled

我似乎想出了一个问题。

我有一个班级

@Component
@Scope("prototype")
public class MyClass extends BaseClass {

....
...
 @Async
 public void doSomething() {
 ....   
 }
....
} 

和包含

的Spring配置
<context:annotation-config />
<context:component-scan base-package="com.company.project" />
<task:annotation-driven executor="taskExecutor"/>
<task:executor id="taskExecutor" pool-size="10" queue-capacity="10" />

在我的代码的某些部分

BaseClass bean = springBeans.getBean(MyClass.class);

但是我得到了这个例外

org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'myClass' must be of type [com.company.project.MyClass], but was actually of type [$Proxy19]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:361)

我可以理解它的代理类,但不确定为什么Spring不允许转换代理。

我在类路径上有cglib 2.2没有dep,以及Spring 3.2核心库。

任何人都可以指出修复此问题的任何线索吗?

简而言之,我希望在调用时将方法设置为异步。

1 个答案:

答案 0 :(得分:2)

由于您拥有CGLIB,因此您可能希望将@Scope更改为

@Scope(value = "prototype", proxyMode = ScopedProxyMode.TARGET_CLASS)