如何在具有异步方法的另一个类中使用异步方法自动装配类

时间:2016-06-03 03:56:10

标签: java spring spring-async

我有一个实现EmailService的类EmailServiceImpl和另一个实现ReportService的类ReportServiceImpl。这两个接口都使用@EnableAsync进行注释,因此有@Async注释的方法。

我正在使用默认的spring taskexecutor。

我无法在ReportService中自动装配EmailService。

Please refer to the stacktrace here

1 个答案:

答案 0 :(得分:2)

现在正在使用,我使用applicationcontext.getBean(" beanName")方法获取bean而不是@Autowired。