scheduleAtFixedRate与scheduleWithFixedDealy 2019-12-20 16:58:41 浏览数 (1) scheduleAtFixedRate如果上一个任务的执行时间大于等待时间,任务结束后,下一个任务马上执行scheduleWithFixedDealy如果上个任务的执行时间大于等待时间,任务结束后也会等待相应的时间才执行下一个任务总结也就是说,不管是scheduleAtFixedRate还是scheduleWithFixedDealy都会等待上一个任务运行结束再进行下一个任务。如果需要并行执行,可以考虑任务中使用异步处理,比如Spring Boot中的@Async spring async boot 异步 0 人点赞 上一篇:分享雷军22年前编写的代码