Springboot项目整合@Scheduled定时任务

Springboot项目整合@Scheduled定时任务

启动类新增@EnableScheduling注解:
Springboot项目整合@Scheduled定时任务
创建定时任务类(Task.java):

package com.kd.opt.controller;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import java.util.Date;

@Component
public class TaskController {

    // 每5秒执行一次(秒、分、时、日、月、星期)
    @Scheduled(cron = "0/5 * *  * * ? ")
    public void method() {
        System.out.println("定时任务开始了:" + new Date().toGMTString());
    }
}

开始测试:
Springboot项目整合@Scheduled定时任务


总结

每天一个提升小技巧!!!

上一篇:java springboot使用定时器


下一篇:SpringBoot整合定时任务----Scheduled注解实现(一个注解全解决)