3分钟带你搞定Spring Boot中Schedule

开发 前端
实际的业务开发过程中,我们经常会需要定时任务来帮助我们完成一些工作,例如每天早上 6 点生成销售报表、每晚 23 点清理脏数据等等。

[[358511]]

 本文转载自微信公众号「Java极客技术」,作者鸭血粉丝。转载本文请联系Java极客技术公众号。

一、摘要

阅读完本文大概需要3分钟,本文主要分享内容如下:

  • SpringBoot Schedule 实践介绍

二、介绍

在实际的业务开发过程中,我们经常会需要定时任务来帮助我们完成一些工作,例如每天早上 6 点生成销售报表、每晚 23 点清理脏数据等等。

如果你当前使用的是 SpringBoot 来开发项目,那么完成这些任务会非常容易!

SpringBoot 默认已经帮我们完成了相关定时任务组件的配置,我们只需要添加相应的注解@Scheduled就可以实现任务调度!

三、Schedule 实践

3.1、pom 包配置

pom包里面只需要引入Spring Boot Starter包即可!

  1. <dependencies> 
  2.     <!--spring boot核心--> 
  3.     <dependency> 
  4.         <groupId>org.springframework.boot</groupId> 
  5.         <artifactId>spring-boot-starter</artifactId> 
  6.     </dependency> 
  7.     <!--spring boot 测试--> 
  8.     <dependency> 
  9.         <groupId>org.springframework.boot</groupId> 
  10.         <artifactId>spring-boot-starter-test</artifactId> 
  11.         <scope>test</scope> 
  12.     </dependency> 
  13. </dependencies> 

3.2、启动类启用定时调度

在启动类上面加上@EnableScheduling即可开启定时

  1. @SpringBootApplication 
  2. @EnableScheduling 
  3. public class ScheduleApplication { 
  4.  
  5.     public static void main(String[] args) { 
  6.         SpringApplication.run(ScheduleApplication.class, args); 
  7.     } 

3.3、创建定时任务

Spring Scheduler支持四种形式的任务调度!

  • fixedRate:固定速率执行,例如每5秒执行一次
  • fixedDelay:固定延迟执行,例如距离上一次调用成功后2秒执行
  • initialDelay:初始延迟任务,例如任务开启过5秒后再执行,之后以固定频率或者间隔执行
  • cron:使用 Cron 表达式执行定时任务

3.3.1、固定速率执行

你可以通过使用fixedRate参数以固定时间间隔来执行任务,示例如下:

  1. @Component 
  2. public class SchedulerTask { 
  3.  
  4.     private static final Logger log = LoggerFactory.getLogger(SchedulerTask.class); 
  5.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  6.  
  7.     /** 
  8.   * fixedRate:固定速率执行。每5秒执行一次。 
  9.   */ 
  10.  @Scheduled(fixedRate = 5000) 
  11.  public void runWithFixedRate() { 
  12.      log.info("Fixed Rate Task,Current Thread : {},The time is now : {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  13.  } 

运行ScheduleApplication主程序,即可看到控制台输出效果:

  1. Fixed Rate Task,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:00 
  2. Fixed Rate Task,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:10 
  3. ... 

3.3.2、固定延迟执行

你可以通过使用fixedDelay参数来设置上一次任务调用完成与下一次任务调用开始之间的延迟时间,示例如下:

  1. @Component 
  2. public class SchedulerTask { 
  3.  
  4.     private static final Logger log = LoggerFactory.getLogger(SchedulerTask.class); 
  5.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  6.  
  7.     /** 
  8.      * fixedDelay:固定延迟执行。距离上一次调用成功后2秒后再执行。 
  9.      */ 
  10.     @Scheduled(fixedDelay = 2000) 
  11.     public void runWithFixedDelay() { 
  12.         log.info("Fixed Delay Task,Current Thread : {},The time is now : {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  13.     } 

控制台输出效果:

  1. Fixed Delay Task,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:00 
  2. Fixed Delay Task,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:02 
  3. ... 

3.3.3、初始延迟任务

你可以通过使用initialDelay参数与fixedRate或者fixedDelay搭配使用来实现初始延迟任务调度。

  1. @Component 
  2. public class SchedulerTask { 
  3.  
  4.     private static final Logger log = LoggerFactory.getLogger(SchedulerTask.class); 
  5.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  6.  
  7.  /** 
  8.      * initialDelay:初始延迟。任务的第一次执行将延迟5秒,然后将以5秒的固定间隔执行。 
  9.      */ 
  10.     @Scheduled(initialDelay = 5000, fixedRate = 5000) 
  11.     public void reportCurrentTimeWithInitialDelay() { 
  12.         log.info("Fixed Rate Task with Initial Delay,Current Thread : {},The time is now : {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  13.     } 

控制台输出效果:

  1. Fixed Rate Task with Initial Delay,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:05 
  2. Fixed Rate Task with Initial Delay,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:10 
  3. ... 

3.3.4、使用 Cron 表达式

Spring Scheduler同样支持Cron表达式,如果以上简单参数都不能满足现有的需求,可以使用 cron 表达式来定时执行任务。

关于cron表达式的具体用法,可以点击参考这里:https://cron.qqe2.com/

  1. @Component 
  2. public class SchedulerTask { 
  3.  
  4.     private static final Logger log = LoggerFactory.getLogger(SchedulerTask.class); 
  5.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  6.  
  7.     /** 
  8.      * cron:使用Cron表达式。每6秒中执行一次 
  9.      */ 
  10.     @Scheduled(cron = "*/6 * * * * ?"
  11.     public void reportCurrentTimeWithCronExpression() { 
  12.         log.info("Cron Expression,Current Thread : {},The time is now : {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  13.     } 

控制台输出效果:

  1. Cron Expression,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:06 
  2. Cron Expression,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 11:46:12 
  3. ... 

3.4、异步执行定时任务

在介绍异步执行定时任务之前,我们先看一个例子!

在下面的示例中,我们创建了一个每隔2秒执行一次的定时任务,在任务里面大概需要花费 3 秒钟,猜猜执行结果如何?

  1. @Component 
  2. public class AsyncScheduledTask { 
  3.  
  4.     private static final Logger log = LoggerFactory.getLogger(AsyncScheduledTask.class); 
  5.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  6.  
  7.     @Scheduled(fixedRate = 2000) 
  8.     public void runWithFixedDelay() { 
  9.         try { 
  10.             TimeUnit.SECONDS.sleep(3); 
  11.             log.info("Fixed Delay Task, Current Thread : {} : The time is now {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  12.         } catch (InterruptedException e) { 
  13.             log.error("错误信息",e); 
  14.         } 
  15.     } 

控制台输入结果:

  1. Fixed Delay Task, Current Thread : scheduling-1 : The time is now 2020-12-15 17:55:26 
  2. Fixed Delay Task, Current Thread : scheduling-1 : The time is now 2020-12-15 17:55:31 
  3. Fixed Delay Task, Current Thread : scheduling-1 : The time is now 2020-12-15 17:55:36 
  4. Fixed Delay Task, Current Thread : scheduling-1 : The time is now 2020-12-15 17:55:41 
  5. ... 

很清晰的看到,任务调度频率变成了每隔5秒调度一次!

这是为啥呢?

从Current Thread : scheduling-1输出结果可以很看到,任务执行都是同一个线程!默认的情况下,@Scheduled任务都在 Spring 创建的大小为 1 的默认线程池中执行!

更直观的结果是,任务都是串行执行!

下面,我们将其改成异步线程来执行,看看效果如何?

  1. @Component 
  2. @EnableAsync 
  3. public class AsyncScheduledTask { 
  4.  
  5.     private static final Logger log = LoggerFactory.getLogger(AsyncScheduledTask.class); 
  6.     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  7.  
  8.  
  9.     @Async 
  10.     @Scheduled(fixedDelay = 2000) 
  11.     public void runWithFixedDelay() { 
  12.         try { 
  13.             TimeUnit.SECONDS.sleep(3); 
  14.             log.info("Fixed Delay Task, Current Thread : {} : The time is now {}", Thread.currentThread().getName(), dateFormat.format(new Date())); 
  15.         } catch (InterruptedException e) { 
  16.             log.error("错误信息",e); 
  17.         } 
  18.     } 

控制台输出结果:

  1. Fixed Delay Task, Current Thread : SimpleAsyncTaskExecutor-1 : The time is now 2020-12-15 18:55:26 
  2. Fixed Delay Task, Current Thread : SimpleAsyncTaskExecutor-2 : The time is now 2020-12-15 18:55:28 
  3. Fixed Delay Task, Current Thread : SimpleAsyncTaskExecutor-3 : The time is now 2020-12-15 18:55:30 
  4. ... 

任务的执行频率不受方法内的时间影响,以并行方式执行!

3.5、自定义任务线程池

虽然默认的情况下,@Scheduled任务都在 Spring 创建的大小为 1 的默认线程池中执行,但是我们也可以自定义线程池,只需要实现SchedulingConfigurer类即可!

自定义线程池示例如下:

  1. @Configuration 
  2. public class SchedulerConfig implements SchedulingConfigurer { 
  3.  
  4.     @Override 
  5.     public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) { 
  6.         ThreadPoolTaskScheduler threadPoolTaskScheduler = new ThreadPoolTaskScheduler(); 
  7.         //线程池大小为10 
  8.         threadPoolTaskScheduler.setPoolSize(10); 
  9.         //设置线程名称前缀 
  10.         threadPoolTaskScheduler.setThreadNamePrefix("scheduled-thread-"); 
  11.         //设置线程池关闭的时候等待所有任务都完成再继续销毁其他的Bean 
  12.         threadPoolTaskScheduler.setWaitForTasksToCompleteOnShutdown(true); 
  13.         //设置线程池中任务的等待时间,如果超过这个时候还没有销毁就强制销毁,以确保应用最后能够被关闭,而不是阻塞住 
  14.         threadPoolTaskScheduler.setAwaitTerminationSeconds(60); 
  15.         //这里采用了CallerRunsPolicy策略,当线程池没有处理能力的时候,该策略会直接在 execute 方法的调用线程中运行被拒绝的任务;如果执行程序已关闭,则会丢弃该任务 
  16.         threadPoolTaskScheduler.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); 
  17.         threadPoolTaskScheduler.initialize(); 
  18.  
  19.         scheduledTaskRegistrar.setTaskScheduler(threadPoolTaskScheduler); 
  20.     } 

我们启动服务,看看cron任务示例调度效果:

  1. Cron Expression,Current Thread : scheduled-thread-1,The time is now : 2020-12-15 20:46:00 
  2. Cron Expression,Current Thread : scheduled-thread-2,The time is now : 2020-12-15 20:46:06 
  3. Cron Expression,Current Thread : scheduled-thread-3,The time is now : 2020-12-15 20:46:12 
  4. Cron Expression,Current Thread : scheduled-thread-4,The time is now : 2020-12-15 20:46:18 
  5. .... 

当前线程名称已经被改成自定义scheduled-thread的前缀!

四、小结

本文主要围绕Spring scheduled应用实践进行分享,如果是单体应用,使用SpringBoot内置的@scheduled注解可以解决大部分业务需求,上手非常容易!

五、参考

1、SpringBoot @Schedule使用与原理分析

原文链接:https://mp.weixin.qq.com/s/7J1tlZab2oE-6cm6GZiU_w

 

责任编辑:武晓燕 来源: Java极客技术
相关推荐

2022-02-16 19:42:25

Spring配置开发

2020-09-14 11:30:26

HTTP3运维互联网

2021-06-18 07:34:12

Kafka中间件微服务

2011-05-26 09:03:17

JSONjavascript

2010-03-05 17:28:08

2013-06-24 15:32:41

JPush极光推送Android Pus移动开发

2017-08-10 13:13:44

Linux正则表达式

2021-12-02 06:58:03

AIOps通信服务

2022-06-17 08:05:28

Grafana监控仪表盘系统

2023-10-09 16:35:19

方案Spring支付

2021-12-01 06:50:50

Docker底层原理

2021-08-03 17:00:25

Spring Boot代码Java

2021-10-19 07:27:08

HTTP代理网络

2020-10-13 18:22:58

DevOps工具开发

2019-11-22 11:10:26

区块链技术

2009-11-26 11:19:52

NIS服务器

2020-11-23 16:23:59

CSS设计技术

2019-08-01 14:35:19

Bash脚本技巧

2017-09-27 11:00:50

LinuxBash使用技巧

2011-02-21 17:48:35

vsFTPd
点赞
收藏

51CTO技术栈公众号