当前位置: 代码迷 >> 综合 >> Spring(9)-计划任务
  详细解决方案

Spring(9)-计划任务

热度:44   发布时间:2024-02-11 18:21:51.0
1.简要说明

从Spring3.1开始,计划任务在Spring中的实现变得异常的简单。首先通过在配置类注解
@EnableScheduling来开启对计划任务的支持,然后在要执行计划任务的方法上注解
@Scheduled,声明这是一个计划任务。
Spring通过@Scheduled支持多种类型的计划任务,包含cron、fixDelay、 fixRate 等。

2.编写任务执行类
package com.lglg.springdemo01;import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;import java.text.SimpleDateFormat;
import java.util.Date;/*** Date:2020/8/16** @author:lg*/
@Service
public class ScheduledTaskService {private static final SimpleDateFormat DATE_FORMAT= new SimpleDateFormat("HH:mm:ss");//@Scheduled声明该方法是计划任务,使用fixedRate属性每隔固定时间执行。@Scheduled(fixedRate = 3000)public void reportCurrentTime(){System.out.println("每隔三秒执行一次===" + DATE_FORMAT.format(new Date()));}@Scheduled(cron = "0 01 17 ? * *")public void fixTimeExecution(){System.out.println("在指定时间执行===" + DATE_FORMAT.format(new Date()));}
}
3.编写配置类
package com.lglg.config;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;/*** Date:2020/8/16** @author:lg*/
@Configuration
@ComponentScan("com.lglg")
@EnableScheduling // 开启对计划任务的支持
public class TaskSch {}
4.编写测试类
package com.lglg.demoTest;import com.lglg.config.TaskSch;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;/*** Date:2020/8/16** @author:lg*/
public class Demo09 {public static void main(String[] args) {AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(TaskSch.class);}
}
5. 测试结果

每隔三秒执行一次=17:00:49
每隔三秒执行一次
=17:00:52
每隔三秒执行一次=17:00:55
每隔三秒执行一次
=17:00:58
在指定时间执行=17:01:00
每隔三秒执行一次
=17:01:01
每隔三秒执行一次=17:01:04
每隔三秒执行一次
=17:01:07

  相关解决方案