springBoot中的定时任务

时间:2023-03-08 16:32:03

springBoot中的定时任务

1:在Spring Boot的主类中加入@EnableScheduling注解,启用定时任务的配置

springBoot中的定时任务

2:新建ScheduledTasks任务类 :

springBoot中的定时任务

 package com.dengwei.springdemo.scheduled;

 import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component; @Component
public class ScheduledTasks { @Scheduled(fixedRate = 1000)
public void test() {
// 执行任务调度方法
System.out.println("我正在每隔1秒打印...");
} }