標籤:
零、引言
上一篇文章:講到了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)