有两种方法:
第一种当然你可以把Scheduled写到xml文件中进行配置。第二种在你的类前面添加
此处讲解第二种写法
第二种在你的类前面添加@PropertySource("classpath:root/test.props") 然后修改你的@Scheduled(cron="0/5 * * * * ? ") 为 @Scheduled(cron="${jobs.schedule}")最后在配置文件 test.props中 添加 jobs.schedule = 0/5 * * * * ?本文共 300 字,大约阅读时间需要 1 分钟。
有两种方法:
第一种当然你可以把Scheduled写到xml文件中进行配置。第二种在你的类前面添加
此处讲解第二种写法
第二种在你的类前面添加@PropertySource("classpath:root/test.props") 然后修改你的@Scheduled(cron="0/5 * * * * ? ") 为 @Scheduled(cron="${jobs.schedule}")最后在配置文件 test.props中 添加 jobs.schedule = 0/5 * * * * ?转载于:https://www.cnblogs.com/JonaLin/p/11174000.html