SpringBoot整合Quartz定時任務 系統job Spring Boot教程 調度任務


原文地址:https://www.cnblogs.com/allalongx/p/8477368.html

 

構建工程

創建一個Springboot工程,在它的程序入口加上@EnableScheduling,開啟調度任務。

1
2
3
4
5
6
7
8
@SpringBootApplication
@EnableScheduling
public  class  SpringbootSchedulingTasksApplication {
 
     public  static  void  main(String[] args) {
         SpringApplication.run(SpringbootSchedulingTasksApplication. class , args);
     }
}

  

創建定時任務

創建一個定時任務,每過5s在控制台打印當前時間。

1
2
3
4
5
6
7
8
9
10
11
12
@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注解,表明該方法是一個調度任務。

  • @Scheduled(fixedRate = 5000) :上一次開始執行時間點之后5秒再執行
  • @Scheduled(fixedDelay = 5000) :上一次執行完畢時間點之后5秒再執行
  • @Scheduled(initialDelay=1000, fixedRate=5000) :第一次延遲1秒后執行,之后按fixedRate的規則每5秒執行一次
  • @Scheduled(cron=” /5 “) :通過cron表達式定義規則,什么是cro表達式,自行搜索引擎。

測試

啟動springboot工程,控制台沒過5s就打印出了當前的時間。

1
2
3
4
2017 - 04 - 29  17 : 39 : 37.672  INFO  677  — [pool- 1 -thread- 1 ] com.forezp.task.ScheduledTasks : The time is now  17 : 39 : 37
2017 - 04 - 29  17 : 39 : 42.671  INFO  677  — [pool- 1 -thread- 1 ] com.forezp.task.ScheduledTasks : The time is now  17 : 39 : 42
2017 - 04 - 29  17 : 39 : 47.672  INFO  677  — [pool- 1 -thread- 1 ] com.forezp.task.ScheduledTasks : The time is now  17 : 39 : 47
2017 - 04 - 29  17 : 39 : 52.675  INFO  677  — [pool- 1 -thread- 1 ] com.forezp.task.ScheduledTasks : The time is now  17 : 39 : 52

  

在springboot創建定時任務只需2步:

  • 1.在程序的入口加上@EnableScheduling注解。
  • 2.在定時方法上加@Scheduled注解。

 

 

 

 

 

 原文地址: https://www.cnblogs.com/mr-wuxiansheng/p/6971493.html

 

記錄一個SpringBoot 整合 Quartz 的Demo實例

 

POM.XML文件

<!-- 定時器任務 quartz需要導入的坐標 -->
        <dependency>
            <groupId>org.quartz-scheduler</groupId>
            <artifactId>quartz</artifactId>
            <version>1.8.5</version>
        </dependency>

 

 

類似於控制器代碼:

復制代碼
package com.xiaowu.quartz.demo;

import java.util.Date;

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


/***
 * 
 * Quartz設置項目全局的定時任務
 * 
 * @Component注解的意義        泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。一般公共的方法我會用上這個注解
 * 
 * 
 * @author WQ
 *
 */
@Component
public class QuartzDemo {
    
    @Scheduled(cron = "0 0/1 * * * ?") // 每分鍾執行一次
    public void work() throws Exception {
        System.out.println("執行調度任務:"+new Date());
    }
    
    
    @Scheduled(fixedRate = 5000)//每5秒執行一次
    public void play() throws Exception {
        System.out.println("執行Quartz定時器任務:"+new Date());
    }

    
    
    @Scheduled(cron = "0/2 * * * * ?") //每2秒執行一次
    public void doSomething() throws Exception {
        System.out.println("每2秒執行一個的定時任務:"+new Date());
    }

    
    
    
    @Scheduled(cron = "0 0 0/1 * * ? ") // 每一小時執行一次
    public void goWork() throws Exception {
        System.out.println("每一小時執行一次的定時任務:"+new Date());
    }
    
    
    
    
}
復制代碼

 

 

啟動SpringBoot項目,即可。

public static void main(String[] args) {
        SpringApplication.run(Chapter1Application.class, args);
    }

 

 

 

,截圖如下:

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM