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 注解