spring boot @Scheduled未生效原因以及相关坑

Posted 太白的技术博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot @Scheduled未生效原因以及相关坑相关的知识,希望对你有一定的参考价值。

在spring boot中,支持多种定时执行模式(cron, fixRate, fixDelay),在Application或者其他Autoconfig上增加@EnableScheduling注解开启。

然后在指定方法增加@Scheduled注解,如下:

    @Scheduled(cron="0 0 0/1 * * ?")
    public void updateTime() {
        current_log_time_appendix = sdf.format(new Date());
        logger.info("日志文件切换, 切换后为:" + current_log_time_appendix);
    }

 

需要注意的是,如果在多个函数上使用了@Scheduled,那么一定是一个执行完毕,才能排下一个。这往往不是我们想要的效果。此时需要在Scheduling配置类为schedule返回一个预定的线程池,如下:

@Configuration
@EnableScheduling
public class SchedulingConfiguration {
    @Bean(destroyMethod = "shutdown")
    public Executor taskScheduler() {
        return Executors.newScheduledThreadPool(10);
    }
}

完成之后,多个@Scheduled可以并发执行了,最高并发度是3,但是同一个@Schedule不会并发执行。

 

以上是关于spring boot @Scheduled未生效原因以及相关坑的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot整合@Scheduled定时计划

Spring Boot 每月测试@Scheduled

java Spring Boot @Scheduled + Spring Security @PreAuthorize = RunAs

Spring Boot @Scheduled 定时任务实战

spring boot 学习定时任务 @Scheduled

玩转 Spring Boot 集成篇(@Scheduled静态动态定时任务)