1. 程式人生 > >使用[email protected]註解定時任務時將時間表達式寫入

使用[email protected]註解定時任務時將時間表達式寫入

第一種可以把Scheduled寫到xml檔案中進行配置。
第二種在你的類前面新增
@PropertySource("classpath:root/test.props")
然後修改你的@Scheduled(cron="0/5 * * * * ? ") 為 @Scheduled(cron="${jobs.schedule}")
最後test.props 新增 jobs.schedule = 0/5 * * * * ?