欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot定时任务@Scheduled执行多次的问题

程序员文章站 2022-06-25 10:16:30
目录springboot定时任务@scheduled执行多次使用 @scheduled 定时任务突然不执行了springboot定时任务@scheduled执行多次在spring boot开发定时任务...

springboot定时任务@scheduled执行多次

在spring boot开发定时任务时遇到一个很怪异的现象..我进行调试模式,在没有bug的情况下.执行了三 次才停止..如图:

springboot定时任务@Scheduled执行多次的问题

原因

是因为执行时间太短,在cronsequencegenerator.class的next方法。

public date next(date date) {
        calendar calendar = new gregoriancalendar();
        calendar.settimezone(this.timezone);
        calendar.settime(date);
        //1.设置下次执行时间的毫秒为0,如上次任务执行过程不足1秒,则calendar的时间会被设置成上次任务的执行时间
        calendar.set(14, 0);
        long originaltimestamp = calendar.gettimeinmillis();
        this.donext(calendar, calendar.get(1));
        //2.由于有上面一步,执行时间太短,会导致下述条件为true
            if(calendar.gettimeinmillis() == originaltimestamp) {
        //3.calendar在原来的时间上增加1秒
            calendar.add(13, 1);
         //cronsequencegenerator的donext算法从指定时间开始(包括指定时间)查找符合cron表达式规则下一个匹配的时间
         //注意第一个匹配符是*,由于增加了1秒,依然符合cron="* 0/2 * * * *",所以下一个执行时间就是在原来的基础上增加了一               秒
            this.donext(calendar, calendar.get(1));
        }
        return calendar.gettime(); 

代码会进入if语句,并设置执行时间在原来的基础上增加一秒。

但由于增加一秒后的时间戳依然符合cron表达式,于是在执行完代码后一秒,任务又开始执行了

解决方法

程序执行时间太短没有关系,只要cron表达式秒的匹配符不设置为*就可以了。如图:

springboot定时任务@Scheduled执行多次的问题

使用 @scheduled 定时任务突然不执行了

在 springboot 中可以通过 @scheduled 注解来定义一个定时任务, 但是有时候你可能会发现有的定时任务到时间了却没有执行,但是又不是每次都不执行,这是怎么回事?

下面这段代码定义了一个每隔十秒钟执行一次的定时任务:

@component
public class scheduledtaskdemo {
    private static final logger logger = loggerfactory.getlogger(scheduledtaskdemo.class); 
    @scheduled(cron = "0/10 * * * * *")
    public void execute() {
        logger.info("scheduled task is running... ...");
    }
}

此时启动 springboot 应用, 可以在控制台看到这个定时任务每隔10秒钟打印一条log

springboot定时任务@Scheduled执行多次的问题

但是, 一切还没结束,如果没有相关log显示, 检查是否在入口类或者 configuration 类上添加了@enablescheduling 注解

在上面的相关代码中, 我们使用cron表达式来指定定时任务的执行时间点, 即从0秒开始, 每隔10秒钟执行一次, 现在我们再加一个定时任务:

@component
public class secondscheduledtaskdemo {
    private static final logger logger = loggerfactory.getlogger(scheduledtaskdemo.class); 
    @scheduled(cron = "0/10 * * * * *")
    public void second() {
        logger.info("second scheduled task is starting... ...");
        logger.info("second scheduled task is ending... ...");
    } 
}

现在再启动springboot应用, 再看log:

springboot定时任务@Scheduled执行多次的问题

注意log中定时任务执行的时间点, 第二个定时任务原本应该每隔10秒钟执行一次, 但是从23:12:20到23:13:55, 本该执行4次, 确只执行了2次.

难道是cron表达式不对?

no.

为了找到原因, 我们从 @scheduled 注解的源码开始找:

*
 * <p>processing of {@code @scheduled} annotations is performed by
 * registering a {@link scheduledannotationbeanpostprocessor}. this can be
 * done manually or, more conveniently, through the {@code <task:annotation-driven/>}
 * element or @{@link enablescheduling} annotation.
 *

划重点, 每一个有 @scheduled 注解的方法都会被注册为一个scheduledannotationbeanpostprocessor, 再接着往下看scheduledannotationbeanpostprocessor:

/**
     * set the {@link org.springframework.scheduling.taskscheduler} that will invoke
     * the scheduled methods, or a {@link java.util.concurrent.scheduledexecutorservice}
     * to be wrapped as a taskscheduler.
     * <p>if not specified, default scheduler resolution will apply: searching for a
     * unique {@link taskscheduler} bean in the context, or for a {@link taskscheduler}
     * bean named "taskscheduler" otherwise; the same lookup will also be performed for
     * a {@link scheduledexecutorservice} bean. if neither of the two is resolvable,
     * a local single-threaded default scheduler will be created within the registrar.
     * @see #default_task_scheduler_bean_name
     */
    public void setscheduler(object scheduler) {
        this.scheduler = scheduler;
    }

重点来了, 注意这句话:

springboot定时任务@Scheduled执行多次的问题

这句话意味着, 如果我们不主动配置我们需要的 taskscheduler, springboot 会默认使用一个单线程的scheduler来处理我们用 @scheduled 注解实现的定时任务, 到此我们刚才的问题就可以理解了:

23:12:20, 第一个定时任务在线程pool-1-thread-1开始执行, 由于我们没有配置scheduler, 目前这个线程池pool-1里只有一个线程, 在打印了starting日志之后, 这个线程开始sleep;第二个定时任务也准备执行, 但是线程池已经没有多余线程了, 只能等待.

23:12:30, 第一个定时任务还在sleep, 第二个定时任务还在等待.

23:12:35, 第一个定时任务sleep结束, 打印ending日志并结束, 此时线程池空闲, 第二个定时任务从等待状态直接开始执行, 执行结束之后, 线程池空闲.

23:12:40, 线程池空闲, 第一个定时任务执行, 打印starting日志, 开始sleep.

springboot定时任务@Scheduled执行多次的问题

搞清楚这个流程之后, 解决这个问题就很简单了.

根据刚才注释的描述, 我们只需要提供一个满足我们需要的 taskscheduler 并注册到context中就可以了.

@configuration
public class scheduledtaskconfiguration implements schedulingconfigurer { 
    /**
     * callback allowing a {@link taskscheduler
     * taskscheduler} and specific {@link task task}
     * instances to be registered against the given the {@link scheduledtaskregistrar}
     *
     * @param taskregistrar the registrar to be configured.
     */
    @override
    public void configuretasks(scheduledtaskregistrar taskregistrar) {
        final threadpooltaskscheduler taskscheduler = new threadpooltaskscheduler();
        taskscheduler.setpoolsize(2);
        taskscheduler.initialize();
        taskregistrar.settaskscheduler(taskscheduler);
    }
}

上面的代码提供了一个线程池大小为2的taskscheduler, 现在再启动下springboot看看效果.

springboot定时任务@Scheduled执行多次的问题

可以看到, 当线程池里有两个线程的时候, 这两个定时任务各自按照预定的时间进行触发, 互不影响了.

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。