StackOverflow 文档 spring 教程 任务执行和调度 固定延迟 固定延迟 Created: November-22, 2018 如果我们想要在执行之前定期执行一些代码,那么我们应该使用固定延迟(以毫秒为单位): @Component public class MyScheduler{ @Scheduled(fixedDelay=5000) public void doSomething() { // this will execute periodically, after the one before finishes } } 固定利率启用计划