1. 定时任务
在项目开发中,经常需要定时任务来帮助我们来做一些内容,比如定时发送短信/站内信息、数据汇总统计、业务监控等,所以就要用到我们的定时任务,在Spring Boot中编写定时任务是非常简单的事,下面通过实例介绍如何在Spring Boot中创建定时任务
1.1 @Scheduled-fixedRate方式
1.1.1 pom配置
只需要引入 Spring Boot Starter jar包即可,Spring Boot Starter 包中已经内置了定时的方法
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
复制代码
1.1.2 加入注解
在Spring Boot的主类中加入**@EnableScheduling** 注解,启用定时任务的配置
package com;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class ScheduleTaskApplication {
public static void main(String[] args) {
SpringApplication.run(ScheduleTaskApplication.class, args);
}
}
复制代码
1.1.3 创建测试类
package com.task;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
//定时任务
@Component
public class SchedulerTask {
private static final SimpleDateFormat f=new SimpleDateFormat("HH:mm:ss");
@Scheduled(fixedRate = 5000)//5秒执行一次
public void processFixedRate(){
System.out.println("processFixedRate方式开启定时任务:现在的时间是"+f.format(new Date()));
}
}
复制代码
1.1.4 参数说明
在上面的入门例子中,使用了@Scheduled(fixedRate = 5000) 注解来定义每过5秒执行的任务,对于@Scheduled 的使用可以总结 如下几种方式:
- @Scheduled(fixedRate = 5000) :上一次开始执行时间点之后5秒再执行
- @Scheduled(fixedDelay = 5000) :上一次执行完毕时间点之后5秒再执行
- @Scheduled(initialDelay=1000, fixedRate=5000) :第一次延迟1秒后执行,之后按fixedRate的规则每5秒执行一次
1.1.5 运行测试
1.2 @Scheduled-cron方式
还可以用另一种方式实现定时任务,只需修改测试类即可
1.2.1 修改测试类
package com.task;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
//定时任务
@Component
public class SchedulerTask {
private static final SimpleDateFormat f=new SimpleDateFormat("HH:mm:ss");
@Scheduled(cron = "*/5 * * * * *")
public void processFixedRate(){
System.out.println("processFixedRate方式开启定时任务:现在的时间是"+f.format(new Date()));
}
}
复制代码
1.2.2 测试
1.2.3 参数说明
cron 一共有七位,最后一位是年,Spring Boot 定时方案中只需要设置六位即可
- 第一位,表示秒,取值 0 ~ 59;
- 第二位,表示分,取值 0 ~ 59