问题还原:
写了多了定时任务,但是部分任务一直不执行, 想起来多个函数上使用了@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
如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!