优雅的使用springboot集成任务调度
# 一 任务调度基本介绍
任务调度器就是按照规定的计划完成任务;比如windows,linux的自带的任务调度系统功能;平常开发中也就是按照规定的时间点轮询执行计划任务(比如每周三的凌晨进行数据备份),或者按时间隔触发一次任务调度(比如每3小时执行一次定时抓拍);
二 corn表达式介绍
2.1 位数介绍
如果有用过quartz的读者肯定了解cron时钟周期计划;下面是cron对应位数的说明,其中第七位年份通常忽略,第四位跟第六位同时表达会有歧义,通常只表达具体的一位,另一位使用?表示解决冲突;
位数 | 说明 |
---|---|
第一位 | second(0-59) |
第二位 | minute(0-59) |
第三位 | hour(0-23) |
第四位 | day of month(1-31) |
第五位 | month(1-12) |
第六位 | day of week(1-7)1是周日,7是周六 |
第七位 | year(1970-2099) |
2.2 占位符说明
占位符 | 说明 |
---|---|
* | 表示任意时刻 |
? | day of month 或者 day of week |
- | 表示范围 |
/ | 表示间隔 |
, | 表示枚举 |
L | 表示最后day of month 或者 day of week |
W | 表示有效工作日(1-5)day of month |
# | 表示第几个星期几 day of week |
LW | 表示某月最后一个工作日 |
2.3 常用cron举例
corn | 说明 |
---|---|
0 0 3 * * ? | 每月每天凌晨3点触发 |
0 0 3 1 * ? | 每月1日凌晨3点触发 |
0 0 3 ? * WEN | 星期三中午12点触发 |
0 0 3 ?* MON-FRI | 周一至周五凌晨3点触发 |
0 0/5 8 * * ? | 每天7点至7:55分每隔5分钟触发一次 |
0 10,20 8 * * ? | 每天的8点10分,8点20分触发 |
0 0 1-3 * * ? | 每天的1点至三点每小时触发一次 |
0 0 8 L * ? | 每月最后一天的8点触发 |
0 10 12 ? * 6#3 | 每月的第三个星期五的12:10分触发 |
0 10 12 ? * 6L 2022 | 表示2022年每月最后一个星期五10:22分触发 |
三使用cron进行任务调度
3.1 依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
3.2 具体corn任务调度计划
在@Scheduled注解中自定义cron调度计划;将注解用在需要进行调度的方法上
/**
* @Author lsc
* @Description <p> </p>
* @Date 2019/11/11 22:23
*/
@Service
public class PlainService {
@Scheduled(cron = "30 * * * * ?")
public void cronScheduled(){
System.out.println("关注作者博客和公众号,不定期分享原创文章");
}
}
3.3 启动类
启动类需要加上 @EnableScheduling 表示开启任务调度;
/**
* @Author lsc
* @Description <p> 任务调度启动类 </p>
* @Date 2019/11/11 22:20
*/
@SpringBootApplication
// 开启任务调度
@EnableScheduling
public class ScheduledApplication {
public static void main(String[] args) {
SpringApplication.run(ScheduledApplication.class,args);
}
}
四 Scheduled 中其它方式进行任务调度
4.1 fixedDelay
每隔3000毫秒执行一次,必须是上次调度成功后3000毫秒;
@Scheduled(fixedDelay = 3000)
public void fixedDelayScheduled(){
System.out.println("the day nice");
}
4.2fixedRate
每个3000毫秒执行一次,无论上次是否会执行成功,下次都会执行;
@Scheduled(fixedRate = 3000)
public void fixedRateScheduled(){
System.out.println("the night nice");
}
4.3 initialDelay
initialDelay 表示初始化延迟1000毫秒后,执行具体的任务调度,之后按照fixedRate进行任务调度;
@Scheduled(initialDelay = 1000,fixedRate = 3000)
public void initialDelayStringScheduled(){
System.out.println("the night nice");
}
五 作者相关
时光荏苒,初心不改,爱学习,爱每一天;源码在github上
本套教程
- springboot入门 (1)
- Springboot自定义banner(2)
- springboot配置文件解析(3)
- springboot集成mybatis(4)
- springboot集成jdbcTemplate(5)
- spingboot单元测试(6)
- springboot集成thymeleaf(7)
- springboot多文件上传(8)
- springboot文件下载(9)
- Springboot自定义异常类(10)
- springboot多环境配置(11)
- springboot自动配置原理解析(12)
- springboot集成restTemplate接口调用(13)
- springboot集成任务调度(14)
- springboot跨域CORS处理(15)
- springboot开启GIZP压缩(16)
- springboot集成logback(17)
- springboot集成Swagger(18)
- springboot集成actuator后台监控(19)
- springboot集成mybatis+oracle+druid(20)
- springboot 集成springsession(21)
- springboot集成jwt(22)
- springboot集成admin后台监控(23)
- springboot集成redis基础篇(24)
- springboot集成redis缓存篇(25)
- springboot使用AOP日志拦截(26)
- springboot集成Validation参数校验(27)
- springboot集成mybatisPlus(28)
- springboot集成shiro(29)
- springboot实现接口等幂次校验(30)
- springboot-集成WebSockets(31)
- restTemplate源码解析(32)
- SpringBoot使用@Async异步调用与线程池(33)
- 待续