springboot整合Quartz實現動態配置定時任務

來源:互聯網
上載者:User

標籤:startup   語句   tab   setter   很多   ble   rtu   root   schema   

前言

在我們日常的開發中,很多時候,定時任務都不是寫死的,而是寫到資料庫中,從而實現定時任務的動態配置,下面就通過一個簡單的樣本,來實現這個功能。

一、建立一個springboot工程,並添加依賴

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

    <dependency><!-- 為了方便測試,此處使用了記憶體資料庫 -->        <groupId>com.h2database</groupId>        <artifactId>h2</artifactId>        <scope>runtime</scope>    </dependency>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-test</artifactId>        <scope>test</scope>    </dependency>    <dependency>        <groupId>org.quartz-scheduler</groupId>        <artifactId>quartz</artifactId>        <version>2.2.1</version>        <exclusions>            <exclusion>                <artifactId>slf4j-api</artifactId>                <groupId>org.slf4j</groupId>            </exclusion>        </exclusions>    </dependency>    <dependency><!-- 該依賴必加,裡面有sping對schedule的支援 -->                   <groupId>org.springframework</groupId>                   <artifactId>spring-context-support</artifactId>    </dependency>

二、設定檔application.properties
#伺服器連接埠號碼
server.port=7902
#是否產生ddl語句
spring.jpa.generate-ddl=false
#是否列印sql語句
spring.jpa.show-sql=true
#自動產生ddl,由於指定了具體的ddl,此處設定為none
spring.jpa.hibernate.ddl-auto=none
#使用H2資料庫
spring.datasource.platform=h2
#指定產生資料庫的schema檔案位置
spring.datasource.schema=classpath:schema.sql
#指定插入資料庫語句的指令碼位置
spring.datasource.data=classpath:data.sql
#配置日誌列印資訊
logging.level.root=INFO
logging.level.org.hibernate=INFO
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
logging.level.org.hibernate.type.descriptor.sql.BasicExtractor=TRACE
logging.level.com.itmuch=DEBUG
三、Entity類
package com.chhliu.springboot.quartz.entity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity
public class Config {br/>@Id
private Long id;

  @Column  private String cron;/** * @return the id */public Long getId() {    return id;}    ……此處省略getter和setter方法……

}
四、任務類

package com.chhliu.springboot.quartz.entity;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.stereotype.Component;

@Configuration
@Component // 此註解必加
@EnableScheduling // 此註解必加
public class ScheduleTask {
private static final Logger LOGGER = LoggerFactory.getLogger(ScheduleTask.class);
public void sayHello(){
LOGGER.info("Hello world, i‘m the king of the world!!!");
}
}
五、Quartz配置類
由於springboot追求零xml配置,所以下面會以配置Bean的方式來實現

package com.chhliu.springboot.quartz.entity;

import org.quartz.Trigger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.quartz.CronTriggerFactoryBean;
import org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean;
import org.springframework.scheduling.quartz.SchedulerFactoryBean;

@Configuration
public class QuartzConfigration {
/**

  • attention:
  • Details:配置定時任務
    /
    @Bean(name = "jobDetail")
    public MethodInvokingJobDetailFactoryBean detailFactoryBean(ScheduleTask task) {// ScheduleTask為需要執行的任務
    MethodInvokingJobDetailFactoryBean jobDetail = new MethodInvokingJobDetailFactoryBean();
    /

    • 是否並發執行
    • 例如每5s執行一次任務,但是當前任務還沒有執行完,就已經過了5s了,
    • 如果此處為true,則下一個任務會執行,如果此處為false,則下一個任務會等待上一個任務執行完後,再開始執行
      */
      jobDetail.setConcurrent(false);

      jobDetail.setName("srd-chhliu");// 設定任務的名字
      jobDetail.setGroup("srd");// 設定任務的分組,這些屬性都可以儲存在資料庫中,在多任務的時候使用

      /*

    • 為需要執行的實體類對應的對象
      */
      jobDetail.setTargetObject(task);

      /*

    • sayHello為需要執行的方法
    • 通過這幾個配置,告訴JobDetailFactoryBean我們需要執行定時執行ScheduleTask類中的sayHello方法
      */
      jobDetail.setTargetMethod("sayHello");
      return jobDetail;
      }

    /**

  • attention:
  • Details:配置定時任務的觸發器,也就是什麼時候觸發執行定時任務
    /
    @Bean(name = "jobTrigger")
    public CronTriggerFactoryBean cronJobTrigger(MethodInvokingJobDetailFactoryBean jobDetail) {
    CronTriggerFactoryBean tigger = new CronTriggerFactoryBean();
    tigger.setJobDetail(jobDetail.getObject());
    tigger.setCronExpression("0 30 20
    * ?");// 初始時的cron運算式
    tigger.setName("srd-chhliu");// trigger的name
    return tigger;

    }

    /**

  • attention:
  • Details:定義quartz調度工廠
    */
    @Bean(name = "scheduler")
    public SchedulerFactoryBean schedulerFactory(Trigger cronJobTrigger) {
    SchedulerFactoryBean bean = new SchedulerFactoryBean();
    // 用於quartz叢集,QuartzScheduler 啟動時更新己存在的Job
    bean.setOverwriteExistingJobs(true);
    // 延時啟動,應用啟動1秒後
    bean.setStartupDelay(1);
    // 註冊觸發器
    bean.setTriggers(cronJobTrigger);
    return bean;
    }
    }

六、定時查庫,並更新任務

package com.chhliu.springboot.quartz.entity;

import javax.annotation.Resource;

import org.quartz.CronScheduleBuilder;
import org.quartz.CronTrigger;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import com.chhliu.springboot.quartz.repository.ConfigRepository;

@Configurationbr/>@EnableScheduling
public class ScheduleRefreshDatabase {br/>@Autowired

@Resource(name = "jobDetail")private JobDetail jobDetail;@Resource(name = "jobTrigger")private CronTrigger cronTrigger;@Resource(name = "scheduler")private Scheduler scheduler;@Scheduled(fixedRate = 5000) // 每隔5s查庫,並根據查詢結果決定是否重新設定定時任務public void scheduleUpdateCronTrigger() throws SchedulerException {    CronTrigger trigger = (CronTrigger) scheduler.getTrigger(cronTrigger.getKey());    String currentCron = trigger.getCronExpression();// 當前Trigger使用的    String searchCron = repository.findOne(1L).getCron();// 從資料庫查詢出來的    System.out.println(currentCron);    System.out.println(searchCron);    if (currentCron.equals(searchCron)) {        // 如果當前使用的cron運算式和從資料庫中查詢出來的cron運算式一致,則不重新整理任務    } else {        // 運算式調度構建器        CronScheduleBuilder scheduleBuilder = CronScheduleBuilder.cronSchedule(searchCron);        // 按新的cronExpression運算式重新構建trigger        trigger = (CronTrigger) scheduler.getTrigger(cronTrigger.getKey());        trigger = trigger.getTriggerBuilder().withIdentity(cronTrigger.getKey())                .withSchedule(scheduleBuilder).build();        // 按新的trigger重新設定job執行        scheduler.rescheduleJob(cronTrigger.getKey(), trigger);        currentCron = searchCron;    }}

}
七、相關指令碼
1、data.sql

insert into config(id,cron) values(1,‘0 0/2 * ?‘); # 每2分鐘執行一次定時任務
2、schema.sql
drop table config if exists;
create table config(
id bigint generated by default as identity,
cron varchar(40),
primary key(id)
);
八、運行測試
測試結果如下:(Quartz預設的線程池大小為10)

0 30 20 ?
0 0/2 * ?
2017-03-08 18:02:00.025 INFO 5328 --- [eduler_Worker-1] c.c.s.quartz.entity.ScheduleTask : Hello world, i‘m the king of the world!!!
2017-03-08 18:04:00.003 INFO 5328 --- [eduler_Worker-2] c.c.s.quartz.entity.ScheduleTask : Hello world, i‘m the king of the world!!!
2017-03-08 18:06:00.002 INFO 5328 --- [eduler_Worker-3] c.c.s.quartz.entity.ScheduleTask : Hello world, i‘m the king of the world!!!
2017-03-08 18:08:00.002 INFO 5328 --- [eduler_Worker-4] c.c.s.quartz.entity.ScheduleTask : Hello world, i‘m the king of the world!!!

總結:

從上面的日誌列印時間來看,我們實現了動態配置,最初的時候,任務是每天20:30執行,後面通過動態重新整理變成了每隔2分鐘執行一次。
雖然上面的解決方案沒有使用Quartz推薦的方式完美,但基本上可以滿足我們的需求,當然也可以採用觸發事件的方式來實現,例如當前端修改定時任務的觸發時間時,非同步向後台發送通知,後台收到通知後,然後再更新程式,也可以實現動態定時任務重新整理

springboot整合Quartz實現動態配置定時任務

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.