1. 程式人生 > >Spring Boot參考教程(十)定時任務

Spring Boot參考教程(十)定時任務

blog esc ref tps targe 技術分享 lin ring tee

8. 定時任務

關於定時任務,考慮到應用的集群部署,一般會使用分布式的定時任務,後期章節會講述,

本章只演示Spring Boot提供的定時任務使用方式。

技術分享

加入註解@EnableScheduling開啟定時任務。

@Scheduled(initialDelay= 100, fixedRate = 5000)表示延遲一秒執行後沒5秒執行一次。

@Scheduled(cron= "0/5 * * * * ?")可直接使用Corn表達式。

<實例代碼>

Github:https://github.com/chunyuding/SpringBoot-Demo

https://github.com/chunyuding/SpringBoot-Demo.git

碼雲:https://gitee.com/dingchunyu/SpringBoot-Demo

https://gitee.com/dingchunyu/SpringBoot-Demo.git

<推薦書籍>

百度雲:http://pan.baidu.com/s/1qYA0Nxi

Spring Boot參考教程(十)定時任務