SpringTask入门案例

Task

cron表达式在线生成网址:

https://cron.qqe2.com/

import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import java.time.LocalDateTime;

/**
 * 定时任务类
 */
@Slf4j
@Component
public class Task {

    @Scheduled(cron = "0/10 * * * * ? ")
    public void task() {
        //间隔10秒输出当前时间
        log.info("当前时间:{}", LocalDateTime.now());
    }

}

注解

在启动类上添加 @EnableScheduling 注解

查看结果

SpringTask入门案例_第1张图片

你可能感兴趣的:(其他内容,spring,task,spring,boot,java,后端)