Spring定时任务@Scheduled配置Cron表达式为永不执行

关于Cron表达式永不执行

一、Spring定时任务@Scheduled中:

配置为 “-” 即可:

	@Scheduled(cron = "${pcliu.task.cron:-}")

原因分析,翻看源码ScheduledTaskRegistrar:

public static final String CRON_DISABLED = "-";
/**
 * Add a {@link Runnable} task to be triggered per the given cron {@code expression}.
 * <p>As of Spring Framework 5.2, this method will not register the task if the
 * {@code expression} is equal to {@link #CRON_DISABLED}.
 */
public void addCronTask(Runnable task, String expression) {
   if (!CRON_DISABLED.equals(expression)) {
      addCronTask(new CronTask(task, expression));
   }
}

二、其他

配置为万能的 “* * * 31 2 ?”
原因:该表达式就是指2月31日执行,这个日期不存在的。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值