当前位置:   article > 正文

Spring Boot 实现定时任务

Spring Boot 实现定时任务

前言

在实际开发中,我们经常需要处理一些周期性或定时的任务,比如每天凌晨进行数据统计、报表生成,或者每隔一段时间清理缓存等。Spring Boot 集成了 Quartz 和 Spring 自带的 TaskScheduler 等多种定时任务框架,使得实现定时任务变得非常方便。本文将通过一个详细的示例,向你展示如何在 Spring Boot 中实现定时任务。

一、使用 Spring Boot 内置的 @Scheduled 注解

Spring Boot 提供了 @Scheduled 注解来实现简单的定时任务,无需引入额外的依赖。

1. 创建 Spring Boot 项目并添加相关依赖

首先创建一个基本的 Spring Boot 项目,并确保已经包含了 web 依赖(因为下面的示例会启动一个应用上下文):

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
2. 创建定时任务类

创建一个名为 ScheduledTask 的类,并在其中定义一个方法,该方法上添加 @Scheduled 注解:

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class ScheduledTask {
   

    @Scheduled(cron =
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/439082?site
推荐阅读
相关标签
  

闽ICP备14008679号