基于SpringBoot的定式任务小Demo(https://www.321tool.com/other/croncheck.html)

2022-07-01 10:28:26

1.

package com.atguigu.yygh.cmn.controller;

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

import java.time.LocalDateTime;

@Configuration      //1.主要用于标记配置类,兼备Component的效果。
@EnableScheduling   // 2.开启定时任务
public class Task {

        //3.添加定时任务
        @Scheduled(cron = "0/5 * * * * ?")
        //或直接指定时间间隔,例如:5秒
        //@Scheduled(fixedRate=5000)
        private void configureTasks() {
            System.err.println("执行静态定时任务时间: " + LocalDateTime.now());
        }
    }



2.执行效果:每五秒打印一次

3.在线表达式生成器

Cron表达式校验,quartz表达式-321工具站 (321tool.com)

  • 作者:Harbor Lau
  • 原文链接:https://blog.csdn.net/weixin_61503139/article/details/125315014
    更新时间:2022-07-01 10:28:26