1.Spring Task
简介:Spring 系列框架中Spring Framework自带的定时任务
2.开启定时任务
在SpringBoot的启动类上声明 @EnableScheduling:
@SpringBootApplication
@MapperScan("com.example.authority.mapper")
@EnableSwagger2
@EnableScheduling //开启定时任务
public class AuthorityApplication {
public static void main(String[] args) {
SpringApplication.run(AuthorityApplication.class, args);
}
}
3.添加定时任务
使用@Scheduled注解标注在方法上即可,多个任务创建多个方法
package com.example.authority.utils;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component // 把此类托管给 Spring,不能省略
public class TaskUtils {
// 添加定时任务,考勤表的状态进行调整
// @Scheduled(cron = "0 0 0 * * ?") // cron表达式:每天 0点执行一次:
@Scheduled(cron = "0 0 18 * * ?") // cron表达式:每天 0点执行一次:
public void doTask(){
System.out.println("我是18.00的定时任务~");
}
// 添加定时任务
@Scheduled(cron = "0 */1 * * * ?") // cron表达式:每隔1分钟执行一次
public void doTask1(){
System.out.println("我是定时任务111~");
}
}
4.Cron表达式
Cron简介
Cron表达式是一个字符串,字符串以5或6个空格隔开,分为6或7个域,每一个域代表一个含义,Cron有如下两种语法格式:
(1) Seconds Minutes Hours DayofMonth Month DayofWeek Year
(2)Seconds Minutes Hours DayofMonth Month DayofWeek
Cron结构
(1)cron从左到右(用空格隔开):秒 分 小时 月份中的日期 月份 星期中的日期 年份
Cron常用表达式
(0)0/20 * * * * ? 表示每20秒 调整任务
(1)0 0 2 1 * ? 表示在每月的1日的凌晨2点调整任务
(2)0 15 10 ? * MON-FRI 表示周一到周五每天上午10:15执行作业
(3)0 15 10 ? 6L 2002-2006 表示2002-2006年的每个月的最后一个星期五上午10:15执行作
(4)0 0 10,14,16 * * ? 每天上午10点,下午2点,4点
(5)0 0/30 9-17 * * ? 朝九晚五工作时间内每半小时
(6)0 0 12 ? * WED 表示每个星期三中午12点
(7)0 0 12 * * ? 每天中午12点触发
(8)0 15 10 ? * * 每天上午10:15触发
(9)0 15 10 * * ? 每天上午10:15触发
(10)0 15 10 * * ? * 每天上午10:15触发
(11)0 15 10 * * ? 2005 2005年的每天上午10:15触发
(12)0 * 14 * * ? 在每天下午2点到下午2:59期间的每1分钟触发
(13)0 0/5 14 * * ? 在每天下午2点到下午2:55期间的每5分钟触发
(14)0 0/5 14,18 * * ? 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发
(15)0 0-5 14 * * ? 在每天下午2点到下午2:05期间的每1分钟触发
(16)0 10,44 14 ? 3 WED 每年三月的星期三的下午2:10和2:44触发
(17)0 15 10 ? * MON-FRI 周一至周五的上午10:15触发
(18)0 15 10 15 * ? 每月15日上午10:15触发
(19)0 15 10 L * ? 每月最后一日的上午10:15触发
(20)0 15 10 ? * 6L 每月的最后一个星期五上午10:15触发
(21)0 15 10 ? * 6L 2002-2005 2002年至2005年的每月的最后一个星期五上午10:15触发
(22)0 15 10 ? * 6#3 每月的第三个星期五上午10:15触发
(24)“30 * * * * ?” 每半分钟触发任务
(25)“30 10 * * * ?” 每小时的10分30秒触发任务
(23)“30 10 1 * * ?” 每天1点10分30秒触发任务
(26)“30 10 1 20 * ?” 每月20号1点10分30秒触发任务
(27)“30 10 1 20 10 ? *” 每年10月20号1点10分30秒触发任务
(28)“30 10 1 20 10 ? 2011” 2011年10月20号1点10分30秒触发任务
(29)“30 10 1 ? 10 * 2011” 2011年10月每天1点10分30秒触发任务
(30)“30 10 1 ? 10 SUN 2011” 2011年10月每周日1点10分30秒触发任务
备注
cron表达式网站:Cron - 在线Cron表达式生成器