如何运用Spring Task结合cron表达式进行任务调度?

更新于
2026-08-08 16:07:26
16阅读来源:SEO基础
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计442个文字,预计阅读时间需要2分钟。

如何运用Spring Task结合cron表达式进行任务调度?

在Spring项目中,要配置依赖并启动任务驱动,请按照以下步骤操作:

xml org.springframework spring-context 5.0.5.RELEASE

开启任务驱动,使用注解驱动:@EnableSchedulingpublic class TaskSchedulerConfig { // 在这里配置任务调度}

相关注解:@Scheduled(fixedRate=5000)

XML配置版本为:xml2.1.0

spring 容器依赖

如何运用Spring Task结合cron表达式进行任务调度?

<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.0.5.RELEASE</version> </dependency>

开启任务注解驱动。即扫描的时候扫描 springtask 相关的注解。

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="www.springframework.org/schema/beans" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:context="www.springframework.org/schema/context" xmlns:task="www.springframework.org/schema/task" xsi:schemaLocation=" www.springframework.org/schema/beans www.springframework.org/schema/beans/spring-beans.xsd www.springframework.org/schema/context www.springframework.org/schema/context/spring-context.xsd www.springframework.org/schema/task www.springframework.org/schema/task/spring-task-4.2.xsd "> <context:component-scan base-package="com.mozq.task"/> <task:annotation-driven/> </beans>

准备 Spring 容器 + 定时任务

为了使用 springtask 需要准备 spring 容器和定时任务。通过 main 方法创建 spring 容器。@Scheduled 注解创建定时任务。

package com.mozq.task; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class TaskDemo { @Scheduled(cron="* * * * * ?") public void sendOrderMessage(){ System.out.println("发送订单消息"); } public static void main(String[] args) throws InterruptedException { ClassPathXmlApplicationContext app = new ClassPathXmlApplicationContext("spring-task.xml"); Thread.sleep(1000); } }

参考文档

docs.spring.io/spring/docs/5.1.9.RELEASE/spring-framework-reference/integration.html#scheduling

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。

本文共计442个文字,预计阅读时间需要2分钟。

如何运用Spring Task结合cron表达式进行任务调度?

在Spring项目中,要配置依赖并启动任务驱动,请按照以下步骤操作:

xml org.springframework spring-context 5.0.5.RELEASE

开启任务驱动,使用注解驱动:@EnableSchedulingpublic class TaskSchedulerConfig { // 在这里配置任务调度}

相关注解:@Scheduled(fixedRate=5000)

XML配置版本为:xml2.1.0

spring 容器依赖

如何运用Spring Task结合cron表达式进行任务调度?

<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.0.5.RELEASE</version> </dependency>

开启任务注解驱动。即扫描的时候扫描 springtask 相关的注解。

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="www.springframework.org/schema/beans" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:context="www.springframework.org/schema/context" xmlns:task="www.springframework.org/schema/task" xsi:schemaLocation=" www.springframework.org/schema/beans www.springframework.org/schema/beans/spring-beans.xsd www.springframework.org/schema/context www.springframework.org/schema/context/spring-context.xsd www.springframework.org/schema/task www.springframework.org/schema/task/spring-task-4.2.xsd "> <context:component-scan base-package="com.mozq.task"/> <task:annotation-driven/> </beans>

准备 Spring 容器 + 定时任务

为了使用 springtask 需要准备 spring 容器和定时任务。通过 main 方法创建 spring 容器。@Scheduled 注解创建定时任务。

package com.mozq.task; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class TaskDemo { @Scheduled(cron="* * * * * ?") public void sendOrderMessage(){ System.out.println("发送订单消息"); } public static void main(String[] args) throws InterruptedException { ClassPathXmlApplicationContext app = new ClassPathXmlApplicationContext("spring-task.xml"); Thread.sleep(1000); } }

参考文档

docs.spring.io/spring/docs/5.1.9.RELEASE/spring-framework-reference/integration.html#scheduling

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。