logo
  • 教程列表
  • SO官方文档
  • 任务执行和调度
    • Cron 表达
    • 启用计划
    • 固定延迟
    • 固定利率
  1. StackOverflow 文档
  2. spring 教程
  3. 任务执行和调度
  4. 固定利率

固定利率

Created: November-22, 2018

如果我们想要定期执行某些操作,则会按照我们指定的毫秒值触发此代码一次:

@Component
public class MyScheduler{    
    
    @Scheduled(fixedRate=5000)
    public void doSomething() {
        // this will execute periodically
    }
}
  • 固定延迟

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明