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

@Scheduled执行阻塞解决办法

程序员文章站 2022-07-10 19:11:14
问题还原:写了多了定时任务,但是部分任务一直不执行,想起来多个函数上使用了@Scheduled,该定时任务默认使用单线程,从而导致了线程阻塞。解决办法: 方案一:使用@Async注解实现异步任务 @Async @Scheduled(cron="0 0/10 * * * ? ") //每10分钟执行一次注意:Application主类要开启 @EnableAsync 注解 方案二:配置线程池import java.util.c......

@Scheduled执行阻塞解决办法

问题还原:

写了多了定时任务,但是部分任务一直不执行, 想起来多个函数上使用了@Scheduled,该定时任务默认使用单线程,从而导致了线程阻塞。

解决办法:

   方案一:使用@Async注解实现异步任务

    

    @Async
    @Scheduled(cron="0 0/10 * * * ? ")   //每10分钟执行一次

注意:Application主类要开启    @EnableAsync  注解

   方案二:配置线程池

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.SchedulingConfigurer;
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
import java.util.concurrent.Executors;


@Configuration
public class ScheduledConfig implements SchedulingConfigurer {
     @Override
      public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
         scheduledTaskRegistrar.setScheduler(Executors.newScheduledThreadPool(50));
 }
}

 

本文地址:https://blog.csdn.net/weixin_38959210/article/details/107493675

相关标签: java 后端