springboot schedule 解决定时任务不执行的问题
程序员文章站
2024-01-05 18:07:16
@schedule 注解 是springboot 常用的定时任务注解,使用起来简单方便,但是如果定时任务非常多,或者有的任务很耗时,会影响到其他定时任务的执行,因...
@schedule 注解 是springboot 常用的定时任务注解,使用起来简单方便,但是如果定时任务非常多,或者有的任务很耗时,会影响到其他定时任务的执行,因为schedule 默认是单线程的,一个任务在执行时,其他任务是不能执行的.解决办法是重新配置schedule,改为多线程执行.只需要增加下面的配置类就可以了.
import org.springframework.boot.autoconfigure.batch.batchproperties; import org.springframework.context.annotation.configuration; import org.springframework.scheduling.annotation.scheduled; import org.springframework.scheduling.annotation.schedulingconfigurer; import org.springframework.scheduling.config.scheduledtaskregistrar; import java.lang.reflect.method; import java.util.concurrent.executors; @configuration public class scheduleconfig implements schedulingconfigurer { @override public void configuretasks(scheduledtaskregistrar taskregistrar) { method[] methods = batchproperties.job.class.getmethods(); int defaultpoolsize = 3; int corepoolsize = 0; if (methods != null && methods.length > 0) { for (method method : methods) { scheduled annotation = method.getannotation(scheduled.class); if (annotation != null) { corepoolsize++; } } if (defaultpoolsize > corepoolsize) corepoolsize = defaultpoolsize; } taskregistrar.setscheduler(executors.newscheduledthreadpool(corepoolsize)); } }
源码 https://github.com/yanyf765/demo_schedule
总结
以上所述是小编给大家介绍的springboot schedule 解决定时任务不执行的问题,希望对大家有所帮助
上一篇: Python学习之def命令的使用
下一篇: [前端] js中call方法的理解和思考
推荐阅读
-
springboot schedule 解决定时任务不执行的问题
-
spring定时任务执行两次及tomcat部署缓慢问题的解决方法
-
解决Python中定时任务线程无法自动退出的问题
-
spring定时任务执行两次及tomcat部署缓慢问题的解决方法
-
ubuntu下创建定时任务的两种方式及常见问题解决方案
-
JSONArray.fromObject不执行且不报错问题的解决
-
倒计时cocos定时器schude使用的过程中 帧率浮动较大导致执行时机不准确的问题解决
-
解决用jquery load加载页面到div时,不执行页面js的问题
-
解决Python中定时任务线程无法自动退出的问题
-
JS定时检测任务任务完成后执行下一步的解决办法