我有一个定期运行的
Spring预定方法:
@Scheduled(cron = "${spring.cron.expression}") public void demonJob() throws .. { .. }
从application.properties成功读取cron表达式:
spring.cron.expression=0 0 * * * *
现在,我想将我的应用程序部署到一个特殊的环境,在该环境中不应该运行这个特定的Scheduled方法.如果我像这样将cron属性留空
spring.cron.expression=
..我得到以下异常:
Encountered invalid @Scheduled method 'demonJob': Cron expression must consist of 6 fields (found 0 in "")
如何优雅地禁用Scheduled方法,理想情况下只能在application.properties中提供不同的设置?
解决方法
空字符串是一个不正确的cron表达式.如果要在特定条件下禁用调度程序,只需使用@Profile注释,或者如果必须对属性进行操作,请使用Spring Boot中的@ConditionalOnProperty注释.
@Component @ConditionalOnProperty(prefix = "spring.cron",name = "expression") public class MyScheduler { @Scheduled(cron = "${spring.cron.expression}") public void demonJob() throws .. { .. } }