咱們有時須要執行一些定時任務(如數據批處理),比較經常使用的技術框架有Spring + Quartz中。無奈此方式有個問題:Spring Bean沒法自動注入。spring
環境:Spring3.2.2 + Quartz1.6.1框架
Quartz配置:this
<bean id="traderRiskReportJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <property name="targetObject" ref="traderNoServerResource" /> <property name="targetMethod" value="queryTraderNo" /> <property name="concurrent" value="true" /> </bean>
service配置:spa
<bean name="traderNoServerResource" class="com.test.TraderNoServerResource" > <property name="threadPool" ref="threadPool"/> </bean>
ThreadPool配置:code
<bean name="threadPool" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor" > <property name="corePoolSize" value="25"></property> <property name="maxPoolSize" value="100"></property> </bean>
出現的問題是:traderNoServerResource中的threadPool爲null。blog
成員變量添加註解@Autowiredget
而後在方法中(如例子中的queryTraderNo方法)添加如下代碼,自動注入成員變量實現類io
SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);class
關於引起這個問題的緣由,有待深刻驗證。說的比較多的是Quartz與SpringMVC的context不一樣,父context沒法訪問子context中的bean。thread
http://stackoverflow.com/questions/6990767/inject-bean-reference-into-a-quartz-job-in-spring