解决Spring+Quartz无法自动注入bean问题

Posted 秦鹏飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Spring+Quartz无法自动注入bean问题相关的知识,希望对你有一定的参考价值。

问题

我们有时需要执行一些定时任务(如数据批处理),比较常用的技术框架有Spring + Quartz中。无奈此方式有个问题:Spring Bean无法自动注入。

环境:Spring3.2.2 + Quartz1.6.1

Quartz配置:

 

<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配置:

 

<bean name="traderNoServerResource" class="com.test.TraderNoServerResource" >
  <property name="threadPool" ref="threadPool"/>
</bean>

 

 

ThreadPool配置:

 <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。

解决方法

    1. 成员变量添加注解@Autowired

    2. 然后在方法中(如例子中的queryTraderNo方法)添加以下代码,自动注入成员变量实现类

      SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);

       

       

 

关于引发这个问题的原因,有待深入验证。说的比较多的是Quartz与SpringMVC的context不同,父context无法访问子context中的bean。

参考资料

http://stackoverflow.com/questions/6990767/inject-bean-reference-into-a-quartz-job-in-spring

以上是关于解决Spring+Quartz无法自动注入bean问题的主要内容,如果未能解决你的问题,请参考以下文章

spring+quartz 实现定时任务三

quartz整合spring框架service层对象注入为null解决方案

Spring Boot集成Quartz注入Spring管理的类

创建 bean 时出错。注入自动装配的依赖项失败。无法自动装配字段

Spring boot下@Autowired 注入为 NULL的问题

多线程时Autowired自动注入问题