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}")