1. 程式人生 > >spring+quartz定時任務出現重複呼叫

spring+quartz定時任務出現重複呼叫

  1. 出現問題的原因: 應該都是將quartz配置和spring配置放在了同一個xml檔案中,導致被容器掃描了兩次
  2. 如何解決呢? 其實你看了會覺得so easy 將quartz配置單獨放在一個xml檔案中,在web.xml中進行配置即可

1、新建quartz配置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" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="  
        http://www.springframework.org/schema/aop   
        http://www.springframework.org/schema/aop/spring-aop.xsd  
        http://www.springframework.org/schema/beans   
        http://www.springframework.org/schema/beans/spring-beans.xsd  
        http://www.springframework.org/schema/tx   
        http://www.springframework.org/schema/tx/spring-tx.xsd  
        http://www.springframework.org/schema/context   
        http://www.springframework.org/schema/context/spring-context.xsd"
    default-autowire="byName">
    
    <bean id="jdssJob" class="com.test.job.AutoJob"/>
	
	<bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">   
        <property name="targetObject" ref="jdssJob"/>  
        <!-- 執行方法--> 
        <property name="targetMethod" value="doJob"/> 
		<!-- 是否允許任務併發執行。當值為false時,表示必須等到前一個執行緒處理完畢後才再啟一個新的執行緒 -->   
        <property name="concurrent" value="false"/>
	</bean> 
	
	<bean id="jobTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  
       <property name="jobDetail" ref="jobDetail"/>  
       <property name="cronExpression" value="*/30 * * * * ?"/><!-- 秒 分 時 日 月 周 年-->  
	</bean>
	<!-- 總管理類 如果將lazy-init='false'那麼容器啟動就會執行排程程式  -->
     <bean id="job" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
         <property name="triggers" ref="jobTrigger"/>
     </bean>
    
</beans>

2、將quartz配置檔案配到web.xml中

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:*.quartz.xml</param-value>
  </context-param>

ok 結束!趕快去嘗試修改一下吧!