Quartz總結(二):定時任務中使用業務類(XXService)

來源:互聯網
上載者:User

標籤:

零、引言

上一篇文章:講到了Spring整合Quartz的幾種基本方法。

在實際使用的時候,往往會在定時任務中調用某個業務類中的方法,此時使用QuartzJobBean和MethodInvokeJobDetailFactoryBean的區別就出來了。

一、QuartzJobBean

在繼承QuartzJobBean的Job類中,使用XXService的時候,會報 null 指標異常,原因是因為使用此方法的時候Job對象的建立時Quartz建立的,而XXXService是通過Spring建立的,兩者不是同一個系統的,所以在Job類中使用由Spring管理的對象就會報null 指標異常。

其具體使用情境如下:

public class TestJob extends QuartzJobBean {    @Autowired    private TestService testSevice;        @Override    protected void executeInternal(JobExecutionContext arg0) throws JobExecutionException {        testSevice.sayHi();        System.out.println(TimeUtils.getCurrentTime());    }}

解決方式就是替換系統預設的SchedulerFactory

public class BsQuartzJobFactory extends AdaptableJobFactory {    @Autowired    private AutowireCapableBeanFactory capableBeanFactory;        @Override    protected Object createJobInstance(TriggerFiredBundle bundle) throws Exception {                Object jobInstance=super.createJobInstance(bundle);        capableBeanFactory.autowireBean(jobInstance);        return super.createJobInstance(bundle);    }}

然後在XML中配置:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">        <bean id="quartzFactory" class="com.mc.bsframe.job.BsQuartzJobFactory"></bean>    <bean id="jobDetail" class="org.springframework.scheduling.quartz.JobDetailFactoryBean">        <property name="jobClass" value="com.mc.bsframe.job.TestJob"></property>        <property name="durability" value="true"></property>    </bean>    <bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">        <property name="jobDetail" ref="jobDetail" />        <property name="startDelay" value="3000" />        <property name="repeatInterval" value="2000" />    </bean>    <!-- 總管理類 如果將lazy-init=‘false‘那麼容器啟動就會執行發送器 -->    <bean id="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">        <property name="jobFactory" ref="quartzFactory"></property>        <!-- 管理trigger -->        <property name="triggers">            <list>                <ref bean="simpleTrigger" />            </list>        </property>    </bean></beans>

二、使用MethodInvokeJobDetailFactoryBean

因為對象的建立時Spring進行建立的,所以可以直接使用。基於此,推薦大家使用此種方式進行整合,方便,簡單。

 

Quartz總結(二):定時任務中使用業務類(XXService)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.