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

springboot-定时任务

时间:2019-01-31 15:24:04      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:完成后   ini   format   class   dex   fixed   sim   ati   hmm   

springboot定时任务需要@EnableScheduling注解

@SpringBootApplication
@EnableScheduling
public class Application {
    public static void main(String args[]) {
        SpringApplication.run(Application.class, args);
    }
}

定时任务有三种执行方式,首先每次任务执行要等到上次任务执行完成后才会执行,fixedDelay,fixedRate可以设定初始延迟时间initialDelay,cron表达式不能。

  1. fixedDelay:本次任务执行完成后,延迟xx秒后执行下次任务。
  2. fixedRate:固定xx秒执行一次,但如果执行阻塞时间超过下次执行时间,则任务执行完成后立即执行下一次。
  3. cron表达式:按照表达式执行,但如果执行阻塞时间超过下次执行时间,则跳过下次的表达式执行时间,等待再下一次的执行时间。
@Component
public class DelayJob {

    SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");

    @Scheduled(fixedDelay=2000)
    public void testFixedDelay(){
        System.out.println("testFixedDelay begin at "+format.format(new Date()));
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("testFixedDelay end at"+format.format(new Date()));
    }

    @Scheduled(fixedRate=2000)
    public void testFixedRate(){
        System.out.println("testFixedRate begin at "+format.format(new Date()));
        try {
            Thread.sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("testFixedRate end at"+format.format(new Date()));
    }

    @Scheduled(cron="0/4 * * * * ?")
    public void testCronTab(){
        System.out.println("testCronTab begin at "+format.format(new Date()));
        try {
            Thread.sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("testCronTab end at"+format.format(new Date()));
    }
}

 

springboot-定时任务

标签:完成后   ini   format   class   dex   fixed   sim   ati   hmm   

原文地址:https://www.cnblogs.com/liuboyuan/p/10342021.html

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