springboot 简单定时任务
时间: 2023-11-16 16:55:30 浏览: 95
Spring Boot实现简单的定时任务
好的,关于 Spring Boot 简单定时任务,可以使用 Spring Boot 自带的 @Scheduled 注解来实现。具体步骤如下:
1. 在启动类上添加 @EnableScheduling 注解开启定时任务功能。
2. 在需要执行定时任务的方法上添加 @Scheduled 注解,并设置 cron 表达式或者固定时间间隔等参数。
下面是一个简单的示例代码:
```java
@SpringBootApplication
@EnableScheduling
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@Scheduled(cron = "0/5 * * * * ?") // 每隔 5 秒执行一次
public void task() {
System.out.println("定时任务执行了!");
}
}
```
阅读全文