Spring动态添加定时任务的实现思路

网友投稿 268 2022-10-12


Spring动态添加定时任务的实现思路

一、背景

在工作中,有些时候我们有些定时任务的执行可能是需要动态修改的,比如: 生成报表,有些项目配置每天的8点生成,有些项目配置http://每天的10点生成,像这种动态的任务执行时间,在不考虑分布式执行的情况下,我们可以

使用 Spring Task来简单的实现。

二、需求和实现思路

1、能够动态的添加一个定时任务。

在Spring中存在一个类ThreadPoolTaskScheduler,它可以实现根据一个cron表达式来调度一个任务,并返回一个ScheduledFuture对象。

2、能够取消定时任务的执行。

通过调用上一步的ScheduledFuture的cancel方法,就可以将这个任务取消。

3、动态的修改任务执行的时间。

先取消任务。然后在重新注册一个任务。

4、获取定时任务执行的异常

ThreadPoolTaskScheduler类中有一个设置ErrorHandler的方法,给自己实现的ErrorHandler即可。

提示:

在Spring中我们通过@Scheduled注解来实现的定时任务,底层也是通过ThreadPoolTaskScheduler来实现的。可以通过ScheduledAnnotationBeanPostProcessor类来查看。

ThreadPoolTaskScheduler的默认线程数是1,这个需要根据实际的情况进行修改。

三、代码实现

此处只给出动态注册定时任务和取消的定时任务的代码。

package com.huan.study.task.jobs.tasks;

import lombok.extern.slf4j.Slf4j;

import org.springframework.beans.factory.InitializingBean;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;

import org.springframework.scheduling.support.CronExpression;

import org.springframework.scheduling.support.CronTrigger;

import org.springframework.stereotype.Component;

import java.time.LocalDateTime;

import java.time.format.DateTimeFormatter;

import java.util.concurrent.ScheduledFuture;

import java.util.concurrent.TimeUnit;

/**

* @author huan.fu 2021/7/8 - 下午2:46

*/

@Component

@Slf4j

public class DynamicCronTask implements InitializingBean {

@Autowired

private ThreadPoolTaskScheduler taskScheduler;

private ScheduledFuture> scheduledFuture;

@Override

public void afterPropertiesSet() throws Exception {

// 动态启动一个定时任务

log.info("注册一个定时任务:每隔1秒执行一次");

scheduledFuture = register("* * * * * ?");

// 取消一个调度

new Thread(() -> {

try {

TimeUnit.SECONDS.sleep(5);

log.info("取消调度");

scheduledFuture.cancel(false);

log.info("取消结果:" + scheduledFuture.isCancelled());

log.info("重新注册一个定时任务:每隔2秒执行一次");

register("*/2 * * * * ?");

} catch (InterruptedException e) {

e.printStackTrace();

}

}).start();

}

private ScheduledFuture> register(String cron) {

// 高版本使用 CronExpression,低版本使用 CronSequenceGenerator

boolean validExpression = CronExpression.isValidExpression(cron);

log.info("cron:[{}]是合法的吗:[{}]", cron, validExpression);

CronExpression expression = CronExpression.parse(cron);

LocalDateTime nextExecTime = expression.next(LocalDateTime.now());

if (null != nextExecTime) {

log.info("定时任务下次执行的时间为:[{}]", nextExecTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));

}

return taskScheduler.schedule(new Runnable() {

@Override

public void run() {

log.info("我执行了");

}

}, new CronTrigger(cron));

}

}

四、执行结果

五、完整代码

https://gitee.com/huan1993/spring-cloud-parent/tree/master/springboot/springboot-task


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:山石网科防火墙SSL(Hillstone Secure Connect)详细配置(最新版)
下一篇:山石网科Hillstone防火墙基础上网配置_CLI命令行(最新版)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~