springMVC定時任務設置

jopen 10年前發布 | 46K 次閱讀 Spring MVC Web框架 SpringMVC

<?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:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans   
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
    http://www.springframework.org/schema/tx   
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
    http://www.springframework.org/schema/context  
    http://www.springframework.org/schema/context/spring-context-3.0.xsd  
    http://www.springframework.org/schema/mvc  
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
         <!-- 要調用的工作類 -->
     <bean id="quartzJob" class="com.service.CurrentDataService"></bean>
     <!-- 定義調用對象和調用對象的方法 -->
     <bean id="jobtask"
      class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
          <!-- 調用的類 -->
          <property name="targetObject">
           <ref bean="quartzJob" />
          </property>
          <!-- 調用類中的方法 -->
          <property name="targetMethod">
           <value>timeTask</value>
          </property>
     </bean>
     <!-- 定義觸發時間 -->
     <bean id="doTime" class="org.springframework.scheduling.quartz.CronTriggerBean">
          <property name="jobDetail">
           <ref bean="jobtask" />
          </property>
          <!-- cron表達式 -->
          <property name="cronExpression">
           <value>00 55 23 ? * *" </value>
          </property>
     </bean>
      <!-- 總管理類 如果將lazy-init='false'那么容器啟動就會執行調度程序 -->
     <bean id="startQuertz" lazy-init="false" autowire="no"
      class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
          <property name="triggers">
           <list>
                <ref bean="doTime" />
                <ref bean="doTime1" />
           </list>
          </property>
     </bean>
</beans>

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!