码迷,mamicode.com
首页 > 其他好文 > 详细

@Scheduled(cron = "0/5 * * * * *")将时间改为配置

时间:2019-07-12 09:29:22      阅读:487      评论:0      收藏:0      [点我收藏+]

标签:时间   配置文件   方法   文件中   led   scheduled   class   cron   rop   

 

有两种方法:
第一种当然你可以把Scheduled写到xml文件中进行配置。

第二种在你的类前面添加

 

此处讲解第二种写法


第二种在你的类前面添加
@PropertySource("classpath:root/test.props")


然后修改你的@Scheduled(cron="0/5 * * * * ? ") 为 @Scheduled(cron="${jobs.schedule}")
最后在配置文件 test.props中 添加 jobs.schedule = 0/5 * * * * ?

@Scheduled(cron = "0/5 * * * * *")将时间改为配置

标签:时间   配置文件   方法   文件中   led   scheduled   class   cron   rop   

原文地址:https://www.cnblogs.com/JonaLin/p/11174000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!