使用spring@Schedule注解定时任务时将时间表达式写入配置文件中的方法

@PropertySource("classpath:root/test.props")
然后修改你的@Scheduled(cron="0/5 * * * * ? ") 为 @Scheduled(cron="${jobs.schedule}")
最后test.props 添加 jobs.schedule = 0/5 * * * * ?

来源:https://blog.csdn.net/SilenceBiuBiu/article/details/72123746

你可能感兴趣的:(使用spring@Schedule注解定时任务时将时间表达式写入配置文件中的方法)