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

SpringBoot慕课学习-SpringBoot开发常用技术整合-定时任务

时间:2018-09-05 21:39:01      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:component   gap   class   EDA   form   int   imp   ota   常用   

1. 启动类添加@EnableScheduling注解

@SpringBootApplication
//开启定时任务
@EnableScheduling
public class StartDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(StartDemoApplication.class, args);
    }
}

2.建立定时任务,使用@Component注解

@Component
public class TestTask {

    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    
    //定义每过3秒执行任务
    @Scheduled(fixedRate = 3000)
    public void reportCurrentTime() {
        System.out.println(dateFormat.format(new Date()));
    }
}

 定时任务表达式

 @Scheduled(cron = "")

cron支持6位

表达式参考网址 cron.qqe2.com

如: @Scheduled(cron = "0/5 * * * * ? ")

SpringBoot慕课学习-SpringBoot开发常用技术整合-定时任务

标签:component   gap   class   EDA   form   int   imp   ota   常用   

原文地址:https://www.cnblogs.com/bigorang/p/9593903.html

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