有两种方法:
第一种当然你可以把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
时间: 2024-10-15 18:13:51