springboot定时器,每半小时执行一次
时间: 2023-07-12 13:36:29 浏览: 283
springboot 定时任务
在Spring Boot中,可以使用@Scheduled注解来实现定时任务。要实现每半小时执行一次的定时任务,可以按照以下步骤操作:
1. 在需要执行定时任务的方法上添加@Scheduled注解,同时设置cron表达式,表示任务执行的时间规则。例如,要每半小时执行一次,可以设置为"0 0/30 * * * ?",表示每小时的第0分钟和第30分钟执行一次。
2. 在Spring Boot启动类上添加@EnableScheduling注解,启用定时任务。
下面是一个示例代码:
```java
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class MyTask {
@Scheduled(cron = "0 0/30 * * * ?")
public void doTask() {
// 任务执行逻辑
System.out.println("定时任务执行了!");
}
}
```
在启动类上添加@EnableScheduling注解:
```java
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
这样就可以实现每半小时执行一次的定时任务了。
阅读全文