@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
@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注解定时任务时将时间表达式写入
本文链接:https://www.haomeiwen.com/subject/ugywjftx.html
网友评论