Springboot项目整合@Scheduled定时任务
启动类新增@EnableScheduling注解:
创建定时任务类(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());
}
}
开始测试:
总结
每天一个提升小技巧!!!