睡眠:
Thread.sleep(1000);
Springboot环境
定时任务:Spring Task
Spring系列框架中Spring Framework自带的定时任务,
1、开启定时任务
在SpringBoot的启动类上声明 @EnableScheduling:
@SpringBootApplication
@EnableScheduling //开启定时任务
public class DemoApplication {
// -- --
}
2、添加定时任务
只需使用@Scheduled注解标注即可,
如果有多个定时任务,可以创建多个@Scheduled标注的方法,示例如下:
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component // 把此类托管给 Spring,不能省略
public class TaskUtils {
// 添加定时任务
@Scheduled(cron = "30 40 23 0 0 5") // cron表达式:每周一 23:40:30 执行
public void doTask(){
System.out.println("我是定时任务~");
}
}
Spring Boot 启动后会自动加载并执行定时任务,无需手动操作。
参考:https://blog.csdn.net/qq_39731011/article/details/123332641