springboot咋做定时任务
时间: 2023-11-04 13:00:44 浏览: 68
springboot+quartz以持久化的方式实现定时任务的代码
SpringBoot提供了简单且方便的方式来实现定时任务。可以通过使用@EnableScheduling注解启用定时任务,并结合@Scheduled注解来指定任务的执行规则和时间间隔。以下是一个基本的示例代码:
```java
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
@EnableScheduling
public class MyTask {
@Scheduled(cron = "0 0 12 * * ?") // 每天中午12点触发任务
public void doTask() {
// 执行任务的代码
}
}
```
在上述示例中,我们使用@EnableScheduling注解启用了定时任务功能,并在MyTask类中定义了一个名为doTask的方法,并使用@Scheduled注解指定了任务的执行规则。在这个例子中,任务将在每天中午12点执行。
阅读全文