我有一个实现EmailService的类EmailServiceImpl和另一个实现ReportService的类ReportServiceImpl。这两个接口都使用@EnableAsync进行注释,因此有@Async注释的方法。
我正在使用默认的spring taskexecutor。
我无法在ReportService中自动装配EmailService。
答案 0 :(得分:2)
现在正在使用,我使用applicationcontext.getBean(" beanName")方法获取bean而不是@Autowired。