0

我有一个实现 EmailService 的类 EmailServiceImpl 和另一个实现 ReportService 的类 ReportServiceImpl。两个接口都用@EnableAsync注解,所以也有带有@Async注解的方法。

我正在使用默认的弹簧任务执行器。

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

请参阅此处的堆栈跟踪

4

1 回答 1

2

它现在可以工作了,我使用 applicationcontext.getBean("beanName") 方法来获取 bean 而不是 @Autowired。

于 2016-06-03T06:26:00.743 回答