溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring Boot集成Quartz注入Spring管理的類的方法

發(fā)布時(shí)間:2020-10-24 09:32:07 來源:腳本之家 閱讀:191 作者:滄海一滴 欄目:編程語言

在Spring Boot中使用Quartz時(shí),在JOB中一般需要引用Spring管理的Bean,通過定義Job Factory實(shí)現(xiàn)自動(dòng)注入。

Spring有自己的Schedule定時(shí)任務(wù),在Spring boot中使用的時(shí)候,不能動(dòng)態(tài)管理JOB,于是就使用Quartz來實(shí)現(xiàn)。

在Spring Boot中配置Quartz:

 import java.io.IOException;
import java.util.Properties;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.PropertiesFactoryBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.quartz.SchedulerFactoryBean;

@Configuration
@EnableScheduling
public class QuartzSchedule {

  @Autowired
  private MyJobFactory myJobFactory;

  @Bean
  public SchedulerFactoryBean schedulerFactoryBean() throws IOException {
    SchedulerFactoryBean factory = new SchedulerFactoryBean();

    factory.setOverwriteExistingJobs(true);

    // 延時(shí)啟動(dòng)
    factory.setStartupDelay(20);

    // 加載quartz數(shù)據(jù)源配置
    factory.setQuartzProperties(quartzProperties());

    // 自定義Job Factory,用于Spring注入
    factory.setJobFactory(myJobFactory);

    return factory;
  }

  /**
   * 加載quartz數(shù)據(jù)源配置
   * 
   * @return
   * @throws IOException
   */
  @Bean
  public Properties quartzProperties() throws IOException {
    PropertiesFactoryBean propertiesFactoryBean = new PropertiesFactoryBean();
    propertiesFactoryBean.setLocation(new ClassPathResource("/quartz.properties"));
    propertiesFactoryBean.afterPropertiesSet();
    return propertiesFactoryBean.getObject();
  }

}

為了在JOB中使用Spring管理的Bean,需要重新定義一個(gè)Job Factory:

 @Component
public class MyJobFactory extends AdaptableJobFactory {
  
  @Autowired
  private AutowireCapableBeanFactory capableBeanFactory;

  @Override
  protected Object createJobInstance(TriggerFiredBundle bundle) throws Exception {
    // 調(diào)用父類的方法
    Object jobInstance = super.createJobInstance(bundle);
    // 進(jìn)行注入
    capableBeanFactory.autowireBean(jobInstance);
    return jobInstance;
  }
} 

然后在JOB中就可以使用Spring管理的Bean了

 public class MyJob implements Job, Serializable {
  private static final long serialVersionUID = 1L;
  private Logger logger = LoggerFactory.getLogger(this.getClass());

  @Autowired
  private SomeService someService;

  @Override
  public void execute(JobExecutionContext context) throws JobExecutionException {
    someService.doSomething();
  }
} 

下面代碼是創(chuàng)建JOB:

      JobDetail jobDetail = JobBuilder.newJob(((Job) Class.forName(job.getClazz()).newInstance()).getClass())
          .withIdentity(job.getJobName(), job.getJobGroup()).build();
      jobDetail.getJobDataMap().put("extdata", job.getExtData());

      // 表達(dá)式調(diào)度構(gòu)建器
      CronScheduleBuilder scheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression())
          .withMisfireHandlingInstructionDoNothing();
      // 構(gòu)建一個(gè)trigger
      TriggerBuilder<CronTrigger> triggerBuilder = TriggerBuilder.newTrigger().withIdentity(triggerKey)
          .withSchedule(scheduleBuilder);
      if (job.getStartTime() != null) {
        triggerBuilder.startAt(job.getStartTime());
      }
      if (job.getEndTime() != null) {
        triggerBuilder.endAt(job.getEndTime());
      }
      CronTrigger trigger = triggerBuilder.build();

      scheduler.scheduleJob(jobDetail, trigger);// 注入到管理類 

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI