注解概览
@EnableScheduling 在配置类上使用,开启计划任务的支持(类上)
@Scheduled 来申明这是一个任务,包括cron,fixDelay,fixRate等类型(方法上,需先开启计划任务的支持)
pom依赖
1. <parent> 2. <groupId>org.springframework.boot</groupId> 3. <artifactId>spring-boot-starter-parent</artifactId> 4. <version>2.0.1.RELEASE</version> 5. </parent> 6. 7. <dependencies> 8. <!-- SpringBoot 核心组件 --> 9. <dependency> 10. <groupId>org.springframework.boot</groupId> 11. <artifactId>spring-boot-starter-web</artifactId> 12. </dependency> 13. </dependencies>
springboot启动类
1. @SpringBootApplication 2. @EnableScheduling //开启定时任务 3. public class Sche{ 4. 5. public static void main(String[] args) { 6. SpringApplication.run(Sche.class, args); 7. } 8. }
要执行的方法或者类上写注解
1. @Component 2. public class ggg{ 3. //表示方法执行完成后5秒 4. @Scheduled(fixedDelay = 5000) 5. public void yy() throws InterruptedException { 6. System.out.println("fixedDelay 每隔5秒" + new Date()); 7. } 8. }
为了放进容器要在任务的类上写@Component
为了进行任务运行要在任务方法上写@Scheduled
1. @Service 2. public class ScheduledTaskService { 3. private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss"); 4. 5. @Scheduled(fixedRate = 3000) //通过@Scheduled声明该方法是计划任务,使用fixedRate属性每隔固定时间执行 6. public void reportCurrentTime(){ 7. System.out.println("每隔3秒执行一次 "+dateFormat.format(new Date())); 8. } 9. 10. @Scheduled(cron = "0 07 20 ? * *" ) //使用cron属性可按照指定时间执行,本例指的是每天20点07分执行; 11. //cron是UNIX和类UNIX(Linux)系统下的定时任务 12. public void fixTimeExecution(){ 13. System.out.println("在指定时间 "+dateFormat.format(new Date())+" 执行"); 14. } 15. }
注解参数的讲解
fixedDelay和fixedRate,单位是毫秒,这里这里就是5秒和3秒
它们的区别就是:
fixedDelay非常好理解,它的间隔时间是根据上次的任务结束的时候开始计时的。比如一个方法上设置了fixedDelay=5*1000,那么当该方法某一次执行结束后,开始计算时间,当时间达到5秒,就开始再次执行该方法。
fixedRate理解起来比较麻烦,它的间隔时间是根据上次任务开始的时候计时的。比如当方法上设置了fiexdRate=5*1000,该执行该方法所花的时间是2秒,那么3秒后就会再次执行该方法。
cron表达式:比如你要设置每天什么时候执行,就可以用它 cron表达式,有专门的语法
* 第一位,表示秒,取值0-59
* 第二位,表示分,取值0-59
* 第三位,表示小时,取值0-23
* 第四位,日期天/日,取值1-31
* 第五位,日期月份,取值1-12
* 第六位,星期,取值1-7,星期一,星期二...,注: 不是第1周,第二周的意思 另外:1表示星期天,2表示星期一。
* 第7为,年份,可以留空,取值1970-2099
(*)星号:可以理解为每的意思,每秒,每分,每天,每月,每年... (?)问号:问号只能出现在日期和星期这两个位置。
(-)减号:表达一个范围,如在小时字段中使用“10-12”, 则表示从10到12点,即10,11,12
(,)逗号:表达一个列表值,如在星期字段中使用“1,2,4”, 则表示星期一,星期二,星期四
(/)斜杠:如:x/y,x是开始值,y是步长,比如在第一位(秒) 0/15就是,从0秒开始,每15秒,最后就是0,15,30,45,60 另:*/y,等同于0/y