码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot参考教程(十)定时任务

时间:2017-10-11 22:36:39      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:表达式   target   tee   initial   任务   boot   实例代码   enter   esc   

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参考教程(十)定时任务

标签:表达式   target   tee   initial   任务   boot   实例代码   enter   esc   

原文地址:http://www.cnblogs.com/dingchunyu/p/7653073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!