美文网首页Spring 中文学习指南
[Spring Guides] 任务调度

[Spring Guides] 任务调度

作者: 谢随安 | 来源:发表于2017-09-13 16:24 被阅读27次

任务调度

您将构建一个使用Spring @Scheduled 注释每五秒打印一次当前时间的应用程序。

通过Maven构建应用程序

pom.xml 配置如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.springframework</groupId>
    <artifactId>gs-scheduling-tasks</artifactId>
    <version>0.1.0</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.6.RELEASE</version>
    </parent>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
创建一个任务调度
package hello;

import java.text.SimpleDateFormat;
import java.util.Date;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class ScheduledTasks {

    private static final Logger log = LoggerFactory.getLogger(ScheduledTasks.class);

    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

    @Scheduled(fixedRate = 5000)
    public void reportCurrentTime() {
        log.info("The time is now {}", dateFormat.format(new Date()));
    }
}

@Scheduled注释定义何时运行特定方法,上面的示例代码使用fixedRate,它指定了每一次调用方法的调用开始间隔。还可以有别的选项,例如fixedDelay,它定义的是下一次调用方法和上一次方法结束的时间间隔。还可以使用@Scheduled(cron =“...”)表达式进行更复杂的任务调度。

启用调度

下面演示的简单的方法创建了一个独立的应用程序。将所有内容都包装在一个可执行的JAR文件中,由Java main()方法驱动:

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@EnableScheduling
public class Application {

    public static void main(String[] args) throws Exception {
        SpringApplication.run(Application.class);
    }
}

@EnableScheduling很重要,它确保成功创建后台任务执行程序。

运行效果如下:

任务调度程序运行效果

相关文章

  • [Spring Guides] 任务调度

    任务调度 您将构建一个使用Spring @Scheduled 注释每五秒打印一次当前时间的应用程序。 通过Mave...

  • Spring定时任务(串行/并行)以及异步任务

    一。Spring提供了两种调度任务的方式。 调度任务,@Scheduled异步任务,@Async 1)spring...

  • spring 任务调度(定时任务)

    spring 任务调度(定时任务) 本文将告诉你如何使用spring的任务调度。主要使用@Scheduled注解 ...

  • spring schedule

    在介绍了简单调度, 调度框架Quartz, 再来介绍一个spring框架的任务调度, spring-schedul...

  • Spring 调度任务

    本指南将引导您完成使用 Spring 安排任务的步骤。 [图片上传失败...(image-f7551a-16614...

  • [Spring]支持注解的Spring调度器

    概述 如果想在Spring中使用任务调度功能,除了集成调度框架Quartz这种方式,也可以使用Spring自己的调...

  • spring调度器

    概述 如果想在Spring中使用任务调度功能,除了集成调度框架Quartz这种方式,也可以使用Spring自己的调...

  • Spring Scheduling -- 任务调度

    文档:https://docs.spring.io/spring-framework/docs/current/s...

  • Spring中任务调度

    任务调度 任务调度即在特定的时间点执行指定的操作。任务调度本身设计多线程并发,运行时间规则制定及解析,运行现场保持...

  • Spring Schedule定时关单

    目录 1. Spring Schedule介绍 作业调度,如定时任务 2. Spring Schedule Cr...

网友评论

    本文标题:[Spring Guides] 任务调度

    本文链接:https://www.haomeiwen.com/subject/obqlsxtx.html