赞
踩
在实际开发中,我们经常需要处理一些周期性或定时的任务,比如每天凌晨进行数据统计、报表生成,或者每隔一段时间清理缓存等。Spring Boot 集成了 Quartz 和 Spring 自带的 TaskScheduler
等多种定时任务框架,使得实现定时任务变得非常方便。本文将通过一个详细的示例,向你展示如何在 Spring Boot 中实现定时任务。
Spring Boot 提供了 @Scheduled
注解来实现简单的定时任务,无需引入额外的依赖。
首先创建一个基本的 Spring Boot 项目,并确保已经包含了 web 依赖(因为下面的示例会启动一个应用上下文):
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
创建一个名为 ScheduledTask
的类,并在其中定义一个方法,该方法上添加 @Scheduled
注解:
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class ScheduledTask {
@Scheduled(cron =
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。