Spring @Scheduled 动态配置cron正则

2023-01-08 12:48:31

1、properties文件中增加配置项:

scheduled.cron.test = */10 * * * * ?

在这里插入图片描述

2、定时任务类增加PropertySource注解:

@PropertySource("classpath:/xxxx.properties")

在这里插入图片描述

3、定时任务方法的Shedule注解改为:

@Scheduled(cron = "${datasync.cron}")

在这里插入图片描述

  • 作者:爱机车的程序猿
  • 原文链接:https://blog.csdn.net/weixin_45067120/article/details/120330672
    更新时间:2023-01-08 12:48:31