Spring XML配置启用@Async而不使用@Scheduled
作者:互联网
使用Spring的xml配置,如何在不启用@Scheduled注释的扫描的情况下启用@Async注释的扫描?
通常,您将同时使用< task:annotation-driven />但是我试图仅在特定的Spring配置文件处于活动状态时才启用调度.
使用Spring JavaConfig,您可以分别使用@EnableAsync和@EnableScheduling.我正在维护一个已经存在了几年并且仅使用基于xml和基于注释的config的项目,并且我不希望将JavaConfig添加到混合中,除非这是唯一的方法.
解决方法:
代替使用名称空间,手动添加各个bean. org.springframework.scheduling.annotation.AsyncAnnotationBeanPostProcessor负责@Async,而org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor负责@Scheduled.
通过手动注册Bean,您可以简单地将ScheduledAnnotationBeanPostProcessor移动到您希望其活动的概要文件.
标签:spring-java-config,xml,spring 来源: https://codeday.me/bug/20191122/2059949.html