美文网首页我爱编程
使用spring@Schedule注解定时任务时将时间表达式写入

使用spring@Schedule注解定时任务时将时间表达式写入

作者: BinLingWang | 来源:发表于2018-05-28 09:45 被阅读38次

    @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