SpringTask任务调度
主要模块
cron表达式
springtask测试类
执行串行任务
执行并行任务
cron表达式
cron表达式包括6部分
秒(0~59) 分钟(0~59) 小时(0~23) 月中的天(1~31) 月(1~12) 周中的天 (填写MON,TUE,WED,THU,FRI,SAT,SUN,或数字1~7 1表示MON,依次类推)
特殊字符介绍
“/”字符表示指定数值的增量
“*”字符表示所有可能的值
“-”字符表示区间范围
“,” 字符表示列举
“?”字符仅被用于月中的天和周中的天两个子表达式,表示不指定值
例子
0/3 * * * * * 每隔3秒执行
0 0/5 * * * * 每隔5分钟执行
0 0 0 * * * 表示每天0点执行
0 0 12 ? * WEN 每周三12点执行
0 15 10 ? * MON-FRI 每月的周一到周五10点 15分执行
0 15 10 ? * MON,FRI 每月的周一和周五10点 15分执行
Spring Task测试 和 串行任务
两个任务之间有关联的时候使用串行任务
在Spring boot启动类上添加注解:@EnableScheduling
@Component
public class ChooseCourseTask {
private static final Logger LOGGER = LoggerFactory.getLogger(ChooseCourseTask.class);
@Scheduled(cron="0/3 * * * * *")
//定时发送加选课任务
public void sendChoosecourseTask(){
//得到1分钟之前的时间
Calendar calendar = new GregorianCalendar();
calendar.setTime(new Date());
calendar.set(GregorianCalendar.MINUTE,-1);
Date time = calendar.getTime();
List<XcTask> xcTaskList = taskService.findXcTaskList(time, 100);
System.out.println(xcTaskList);
//调用service发布消息,将添加选课的任务发送给mq
for(XcTask xcTask:xcTaskList){
//取任务
if(taskService.getTask(xcTask.getId(),xcTask.getVersion())>0){
String ex = xcTask.getMqExchange();//要发送的交换机
String routingKey = xcTask.getMqRoutingkey();//发送消息要带routingKey
taskService.publish(xcTask,ex,routingKey);
}
}
}
//定义任务调试策略
// @Scheduled(cron="0/3 * * * * *")//每隔3秒去执行
// @Scheduled(fixedRate = 3000) //在任务开始后3秒执行下一次调度
// @Scheduled(fixedDelay = 3000) //在任务结束后3秒后才开始执行
public void task1(){
LOGGER.info("===============测试定时任务1开始===============");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
LOGGER.info("===============测试定时任务1结束===============");
}
//定义任务调试策略
// @Scheduled(cron="0/3 * * * * *")//每隔3秒去执行
// @Scheduled(fixedRate = 3000) //在任务开始后3秒执行下一次调度
// @Scheduled(fixedDelay = 3000) //在任务结束后3秒后才开始执行
public void task2(){
LOGGER.info("===============测试定时任务2开始===============");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
LOGGER.info("===============测试定时任务2结束===============");
}
}
并行任务
当两个任务之间没有相关联的时候,使用并行任务
创建异步任务配置类,需要配置线程池实现多线程调度任务。
/**
* @author Administrator
* @version 1.0
**/
@Configuration
@EnableScheduling
public class AsyncTaskConfig implements SchedulingConfigurer, AsyncConfigurer {
//线程池线程数量
private int corePoolSize = 5;
@Bean
public ThreadPoolTaskScheduler taskScheduler()
{
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
scheduler.initialize();//初始化线程池
scheduler.setPoolSize(corePoolSize);//线程池容量
return scheduler;
}
@Override
public Executor getAsyncExecutor() {
Executor executor = taskScheduler();
return executor;
}
@Override
public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
return null;
}
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
scheduledTaskRegistrar.setTaskScheduler(taskScheduler());
}
}
将@EnableScheduling添加到此配置类上,SpringBoot启动类上不用再添加@EnableScheduling