spring 定时执行任务

http://blog.csdn.net/arui_email/article/details/9767447


[html]  view plain  copy
 print ?
  1. 1、applicationContext-job.xml 配置文件如下:  
[html]  view plain  copy
 print ?
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans  
  3.     xmlns="http://www.springframework.org/schema/beans"  
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.     xmlns:p="http://www.springframework.org/schema/p"  
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">  
  7.   
  8.       
  9.     <bean id="receiveWSDate"  
  10.           class="com.XXXX.agent.webservices.client.WebServiceClient">  
  11.     </bean>  
  12.       
  13.     <bean id="receiveWSDateJob"  
  14.           class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  15.           <property name="targetObject" ref="receiveWSDate"></property>  
  16.           <property name="targetMethod" value="getAgentInfo"></property>  
  17.           <property name="concurrent" value="false"></property>  
  18.     </bean>  
  19.       
  20.     <!-- 调用触发器trigger 每周一至周五 凌晨02点执行一次同步 -->  
  21.     <bean id="receiveWSDateTrigger"  
  22.           class="org.springframework.scheduling.quartz.CronTriggerBean">  
  23.           <property name="jobDetail" ref="receiveWSDateJob"></property>  
  24.           <property name="cronExpression">  
  25.                <value>0 00 02 ? * MON-FRI</value>   
  26.           </property>   
  27.     </bean>  
  28.       
  29.     <!-- 调度工厂  -->  
  30.     <bean id="xxxx_jobScheduler"  
  31.         class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  32.         <property name="triggers">  
  33.             <list>  
  34.                 <ref bean="receiveWSDateTrigger" />  
  35.             </list>  
  36.         </property>  
  37.         <!--  property name="startupDelay" value="5"></property-->  
  38.     </bean>  
  39.       
  40.     <!-- ********************chenxl,任务管理分配,开始******************************************* -->  
  41.       
  42.     <bean id="taskWSHost"  
  43.           class="com.XXXX.agent.webservices.host.TaskWSHost">  
  44.     </bean>  
  45.       
  46.     <bean id="taskWSHostJob"  
  47.           class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  48.           <property name="targetObject" ref="taskWSHost"></property>  
  49.           <property name="targetMethod" value="getTaskInfo"></property>  
  50.           <property name="concurrent" value="false"></property>  
  51.     </bean>  
  52.       
  53.     <!-- 调用触发器trigger 每周一至周五 早上9点到下午6点每五分钟执行一次 -->  
  54.     <bean id="taskWSHostTrigger"  
  55.           class="org.springframework.scheduling.quartz.CronTriggerBean">  
  56.           <property name="jobDetail" ref="taskWSHostJob"></property>  
  57.           <property name="cronExpression">  
  58.                <value>0 0/5 09-18 ? * MON-FRI</value>   
  59.           </property>   
  60.     </bean>  
  61.       
  62.     <!-- 调度工厂  -->  
  63.     <bean id="xxxx_jobScheduler2"  
  64.         class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  65.         <property name="triggers">  
  66.             <list>  
  67.                 <ref bean="taskWSHostTrigger" />  
  68.             </list>  
  69.         </property>  
  70.         <!--  property name="startupDelay" value="5"></property-->  
  71.     </bean>  
  72.       
  73.     <!-- ********************chenxl,任务管理分配,结束******************************************* -->  
  74.       
  75.       
  76.   
  77.   
  78. </beans>    
[html]  view plain  copy
 print ?
  1. 2、webservice服务端TaskWSHost.java  
[java]  view plain  copy
 print ?
  1. package com.XXX.agent.webservices.host;  
  2.   
  3. import org.apache.commons.logging.Log;  
  4. import org.apache.commons.logging.LogFactory;  
  5. import org.springframework.context.ApplicationContext;  
  6. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  7.   
  8. import com.XXX.agent.service.IAutoOutVisitService;  
  9.   
  10. /** 
  11.  *  
  12.  * 此类描述的是:  任务管理的webservice服务端 
  13.  
  14.  * @author: <a target="_blank" href="mailto:XXX@126.com">XXX@126.com</a>   
  15.  
  16.  * @version: 2013-7-29 上午11:15:39 
  17.  */  
  18. public class TaskWSHost {  
  19.     private static ApplicationContext appcontext;  
  20.          
  21.        protected final Log logger = LogFactory.getLog(this.getClass().getName());  
  22.         
  23.        public static ApplicationContext initBeanFactory() {  
  24.            if(null == appcontext) {  
  25.                appcontext = new ClassPathXmlApplicationContext("classpath:applicationContext-resource.xml");  
  26.            }  
  27.            return appcontext;  
  28.        }  
  29.        
  30.      /** 
  31.       *  
  32.       * 此方法描述的是:  自动外乎回访,把数据给青牛 
  33.       
  34.       * @author: <a target="_blank" href="mailto:XXXX@126.com">XXXX@126.com</a>   
  35.       
  36.       * @version: 2013-7-31 下午04:09:29 
  37.       
  38.       * @param name 
  39.       * @return String 
  40.       */  
  41.      public String getTaskInfo(){  
  42.            
  43.            appcontext = initBeanFactory(); //获取getBean对象  
  44.            
  45.            IAutoOutVisitService iAutoOutVisitService  = (IAutoOutVisitService) appcontext.getBean("mgrAutoOutVisitService");  
  46.              
  47.            String str = iAutoOutVisitService.getTaskInfoStr();//把相关数据推送给青牛  
  48.              
  49.            System.out.println("===================str:"+str);  
  50.              
  51.            return str;  
  52.      }  
  53.      /** 
  54.       *  
  55.       * 此方法描述的是:  获取从青牛返回的数据 
  56.       * @author: <a target="_blank" href="mailto:XXXX@126.com">XXXX@126.com</a>   
  57.       * @version: 2013-7-30 下午03:01:08 
  58.       * @param mobile :电话号码 
  59.       * @param userName :姓名(负责人) 
  60.       * @param windowName :窗口名称 
  61.       * @param orderTel :下单电话 
  62.       * @param selectTel :查询电话 
  63.       * @param complainTel :投诉电话 
  64.       * @param obStatus :外拨电话状态 
  65.       * @param resultFlag :确认结果 
  66.       * @param startDate :外拨电话时间 
  67.       * @param endDate :外拨结束时间 
  68.       * @return String 
  69.       */  
  70.      public String getReturnData(String mobile, String userName, String windowName, String orderTel, String selectTel,   
  71.              String complainTel, String obStatus, String resultFlag, String startDate, String endDate){  
  72.          appcontext = initBeanFactory(); //获取getBean对象  
  73.            
  74.          IAutoOutVisitService iAutoOutVisitService  = (IAutoOutVisitService) appcontext.getBean("stasAutoOutVisitService");  
  75.            
  76.          String str = iAutoOutVisitService.getReturnInfo(mobile, userName, windowName, orderTel, selectTel,   
  77.                  complainTel, obStatus, resultFlag, startDate, endDate);  
  78.            
  79.          return str;  
  80.      }  
  81. }  

 

[html]  view plain  copy
 print ?
  1. 下面是在网上搜索的一些信息,方便大家查看就正过来了:  
[html]  view plain  copy
 print ?
  1. <pre class="html" name="code">关于简单触发器和复杂触发器,查考下面的解释:   
  2.   
  3.   
  4. Quartz设计者做了一个设计选择来从调度分离开作业。Quartz中的触发器用来告诉调度程序作业什么时候触发。框架提供了一把触发器类型,但两个最常用的是</pre><pre class="html" name="code">SimpleTrigger和CronTrigger。</pre><pre class="html" name="code">SimpleTrigger为需要简单打火调度而设计。典型地,如果你需要在给定的时间和重复次数或者两次打火之间等待的秒数打火一个作业,那么SimpleTrigger适合你。</pre><pre class="html" name="code">另一方面,如果你有许多复杂的作业调度,那么或许需要CronTrigger。  
  5.   
  6. CronTrigger是基于Calendar-like调度的。当你需要在除星期六和星期天外的每天上午10点半执行作业时,那么应该使用CronTrigger。正如它的名字所暗示的那样,</pre><pre class="html" name="code">CronTrigger是基于Unix克隆表达式的。  
  7.   
  8. 作为一个例子,下面的Quartz克隆表达式将在星期一到星期五的每天上午10点15分执行一个作业。  
  9. 0 15 10   * MON-FRI  
  10.   
  11. 下面的表达式  
  12. 0 15 10   * 6L 2002-2005  
  13. 将在2002年到2005年的每个月的最后一个星期五上午10点15分执行作业。  
  14.   
  15. 你不可能用SimpleTrigger来做这些事情。你可以用两者之中的任何一个,但哪个跟合适则取决于你的调度需要。   
  16. 更多详细介绍参考此处:   
  17.   
  18. 关于cronExpression的介绍:   
  19.    
  20. </pre><pre class="html" name="code">字段  允许值 允许的特殊字符   
  21.   
  22. 秒   0-59, - * /  
  23.    
  24.   
  25.   
  26. 分   0-59, - * /  
  27.    
  28.   
  29.   
  30. 小时  0-23, - * /  
  31.    
  32.   
  33.   
  34. 日期  1-31, - *   / L W C  
  35.    
  36.   
  37.   
  38. 月份  1-12 或者 JAN-DEC, - * /  
  39.    
  40.   
  41.   
  42. 星期  1-7 或者 SUN-SAT, - *   / L C #  
  43.    
  44.   
  45.   
  46. 年(可选)留空, 1970-2099, - * /  
  47.    
  48.     
  49. 如上面的表达式所示:   
  50.   
  51. “*”字符被用来指定所有的值。如:”*“在分钟的字段域里表示“每分钟”。   
  52.   
  53. “-”字符被用来指定一个范围。如:“10-12”在小时域意味着“10点、11点、12点”。  
  54. </pre><pre class="html" name="code">   
  55. “,”字符被用来指定另外的值。如:“MON,WED,FRI”在星期域里表示”星期一、星期三、星期五”.   
  56.   
  57. “?”字符只在日期域和星期域中使用。它被用来指定“非明确的值”。当你需要通过在这两个域中的一个来指定一些东西的时候,它是有用的。看下面的例子你就会明白。   
  58.   
  59.   
  60. “L”字符指定在月或者星期中的某天(最后一天)。即“Last ”的缩写。但是在星期和月中“L”表示不同的意思,如:在月子段中“L”指月份的最后一天-1月31日,2月28日</pre><pre class="html" name="code">,如果在星期字段中则简单的表示为“7”或者“SAT”。如果在星期字段中在某个value值得后面,则表示“某月的最后一个星期value”,如“6L”表示某月的最后一个星期五。  
  61.   
  62. “W”字符只能用在月份字段中,该字段指定了离指定日期最近的那个星期日。  
  63.   
  64. “#”字符只能用在星期字段,该字段指定了第几个星期value在某月中  
  65.   
  66.   
  67.    
  68.   
  69.   
  70.   
  71. 表达式 意义   
  72.   
  73.   
  74.   
  75. "0 0 12 * * ?"      每天中午12点触发  
  76.    
  77.   
  78.   
  79. "0 15 10 ? * *"      每天上午10:15触发  
  80.    
  81.   
  82.   
  83. "0 15 10 * * ?"      每天上午10:15触发  
  84.    
  85.   
  86.   
  87. "0 15 10 * * ? *"     每天上午10:15触发  
  88.    
  89.   
  90.   
  91. "0 15 10 * * ? 2005"   2005年的每天上午10:15触发  
  92.    
  93.   
  94.   
  95. "0 * 14 * * ?"         在每天下午2点到下午2:59期间的每1分钟触发  
  96.    
  97.   
  98.   
  99. "0 0/5 14 * * ?"          在每天下午2点到下午2:55期间的每5分钟触发  
  100.    
  101.   
  102.   
  103. "0 0/5 14,18 * * ?"       在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发  
  104.    
  105.   
  106.   
  107. "0 0-5 14 * * ?"          在每天下午2点到下午2:05期间的每1分钟触发  
  108.    
  109.   
  110.   
  111. "0 10,44 14 ? 3 WED"        每年三月的星期三的下午2:10和2:44触发  
  112.    
  113.   
  114.   
  115. "0 15 10 ? * MON-FRI"       周一至周五的上午10:15触发  
  116.    
  117.   
  118.   
  119. "0 15 10 15 * ?"            每月15日上午10:15触发  
  120.    
  121.   
  122.   
  123. "0 15 10 L * ?"             每月最后一日的上午10:15触发  
  124.    
  125.   
  126.   
  127. "0 15 10 ? * 6L"            每月的最后一个星期五上午10:15触发   
  128.    
  129.   
  130.   
  131. "0 15 10 ? * 6L 2002-2005"  2002年至2005年的每月的最后一个星期五上午10:15触发  
  132.    
  133.   
  134.   
  135. "0 15 10 ? * 6#3"           每月的第三个星期五上午10:15触发  
  136.    
  137. </pre><pre class="html" name="code"> </pre><pre class="html" name="code">每天早上6点   0 6 * * *    
  138.   
  139. 每两个小时    0 */2 * * *</pre><pre class="html" name="code"> </pre><pre class="html" name="code">   
  140. 晚上11点到早上8点之间每两个小时,早上八点      0 23-7/2,8 * * *   
  141.   
  142. 每个月的4号和每个礼拜的礼拜一到礼拜三的早上11点 0 11 4 * 1-3   
  143. </pre><pre class="html" name="code"> </pre><pre class="html" name="code">1月1日早上4点   0 4 1 1 *  
  144.   
  145.    
  146.   
  147.   
  148. 定时批处理作业是J2EE企业应用里很重要的一环,用来在晚间进行财务挂账,数据转存,新闻联播等等操作。  
  149.    
  150.     而在Spring里,已经很好的集成了Quartz,简单到像配cron一样,在xml文件里面配一下时间就可以自动执行,不需要写一行代码。Spring对Quartz大刀阔斧的简化堪称范例,Quartz项目组也许可以学习一下。  
  151.      <bean id="methodInvokingJobDetail"  
  152.         class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  153.         <property name="targetObject"><ref bean="financeDAO"/></property>  
  154.         <property name="targetMethod"><value>confirmOrder</value></property>  
  155.     </bean>     <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  
  156.         <property name="jobDetail">  
  157.             <ref bean="methodInvokingJobDetail"/>  
  158.         </property>  
  159.         <property name="cronExpression">  
  160.             <value>0 0 6,12,20 * * ?</value>  
  161.         </property>  
  162.     </bean>     <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  163.         <property name="triggers">  
  164.             <list><ref local="cronTrigger"/></list>  
  165.         </property>  
  166.     </bean>   
  167. 上面这段配置文件规定了在早上6点和晚上8点执行financeDAO对象的confirmOrder()方法.  
  168. </pre><br>  
  169. <pre></pre>  
  170. <p> </p>  
  171.      

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值