当前位置 主页 > 网站技术 > 代码类 >

    Spring计划任务用法实例详解

    栏目:代码类 时间:2019-11-06 09:07

    本文实例讲述了Spring计划任务用法。分享给大家供大家参考,具体如下:

    一 点睛

    从Spring3.1开始,计划任务在Spring中的实现变得异常的简单。只需要下面两步。

    1 通过在配置类上注解@EnableScheduling来开启对计划任务的支持。

    2 在要执行计划任务的方法上注解@Scheduled,声明这是一个计划任务。

    Spring通过@Scheduled支持多种类型的计划任务,包含cron、fixDelay、fixRate等。

    二 实战

    1 配置类

    package com.wisely.highlight_spring4.ch3.taskscheduler;
    import org.springframework.context.annotation.ComponentScan;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.scheduling.annotation.EnableScheduling;
    @Configuration
    @ComponentScan("com.wisely.highlight_spring4.ch3.taskscheduler")
    @EnableScheduling //1
    public class TaskSchedulerConfig {
    }
    
    

    2 计划任务执行类

    package com.wisely.highlight_spring4.ch3.taskscheduler;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import org.springframework.scheduling.annotation.Scheduled;
    import org.springframework.stereotype.Service;
    @Service
    public class ScheduledTaskService {
       private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
       @Scheduled(fixedRate = 5000) //该方法是计划任务,使用fixedRate属性每隔固定时间执行。
       public void reportCurrentTime() {
          System.out.println("每隔五秒执行一次 " + dateFormat.format(new Date()));
        }
       @Scheduled(cron = "0 28 11 ? * *" ) //每天11点28分执行
       public void fixTimeExecution(){
         System.out.println("在指定时间 " + dateFormat.format(new Date())+"执行");
       }
    }
    
    

    3 主类

    package com.wisely.highlight_spring4.ch3.taskscheduler;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    public class Main {
       public static void main(String[] args) {
          AnnotationConfigApplicationContext context =
               new AnnotationConfigApplicationContext(TaskSchedulerConfig.class);
       }
    }
    
    

    三 运行结果

    每隔五秒执行一次 19:58:50

    每隔五秒执行一次 19:58:55

    每隔五秒执行一次 19:59:00

    每隔五秒执行一次 19:59:05

    每隔五秒执行一次 19:59:10

    每隔五秒执行一次 19:59:15

    每隔五秒执行一次 19:59:20

    每隔五秒执行一次 19:59:25

    每隔五秒执行一次 19:59:30

    每隔五秒执行一次 19:59:35

    每隔五秒执行一次 19:59:40

    每隔五秒执行一次 19:59:45

    每隔五秒执行一次 19:59:50

    每隔五秒执行一次 19:59:55

    每隔五秒执行一次 20:00:00

    每隔五秒执行一次 20:00:05

    更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》

    希望本文所述对大家java程序设计有所帮助。