Quartz之QuartzInitializerServlet

问题:我想在应用程序启动之后去执行任务怎么办呢! 
Quartz:使用QuartzInitializerServlet可满足需要 

参考资料 
1 Quartz调度框架应用总结 
http://java.chinaitlab.com/advance/752064_3.html 
2 Integrating quartz in a web application 
http://www.oreillynet.com/cs/user/view/cs_msg/52725 
3 基于Quartz的开源项目 
myschedule 
4 Adding multiple jobs via the quartz_jobs.xml skips jobs 
http://jira.opensymphony.com/browse/QRTZNET-250 
5 Quartz with Apache ServiceMix 
http://forums.terracotta.org/forums/posts/list/5427.page 
6 Web应用中使用Quartz进行任务调度 
http://www.hujun.me/post?id=12001 
7 Quartz的XML定义说明:New in Quartz.Net 2.0–New Job File Format 
http://jvilalta.blogspot.com/2011/03/new-in-quartznet-20new-job-file-format.html 
来自于Quartz的文档说明: 
A Servlet that can be used to initialize Quartz, if configured as a load-on-startup servlet in a web application.Using this start-up servlet may be preferred to using the QuartzInitializerListener in some situations - namely when you want to initialize more than one scheduler in the same application.You'll want to add something like this to your WEB-INF/web.xml file: 

Java代码    收藏代码
  1. <servlet>  
  2.          <servlet-name>  
  3.              QuartzInitializer  
  4.          </servlet-name>  
  5.          <display-name>  
  6.              Quartz Initializer Servlet  
  7.          </display-name>  
  8.          <servlet-class>  
  9.              org.quartz.ee.servlet.QuartzInitializerServlet  
  10.          </servlet-class>  
  11.          <load-on-startup>  
  12.              1  
  13.          </load-on-startup>  
  14.          <init-param>  
  15.              <param-name>config-file</param-name>  
  16.              <param-value>/some/path/my_quartz.properties</param-value>  
  17.          </init-param>  
  18.          <init-param>  
  19.              <param-name>shutdown-on-unload</param-name>  
  20.              <param-value>true</param-value>  
  21.          </init-param>  
  22.          <init-param>  
  23.              <param-name>wait-on-shutdown</param-name>  
  24.              <param-value>true</param-value>  
  25.          </init-param>  
  26.          <init-param>  
  27.              <param-name>start-scheduler-on-load</param-name>  
  28.              <param-value>true</param-value>  
  29.          </init-param>  
  30.      </servlet>  


相应参数说明: 

The init parameter 'config-file' can be used to specify the path (and filename) of your Quartz properties file. If you leave out this parameter, the default ("quartz.properties") will be used. 
The init parameter 'shutdown-on-unload' can be used to specify whether you want scheduler.shutdown() called when the servlet is unloaded (usually when the application server is being shutdown). Possible values are "true" or "false". The default is "true". 
The init parameter 'wait-on-shutdown' has effect when 'shutdown-on-unload' is specified "true", and indicates whether you want scheduler.shutdown(true) called when the listener is unloaded (usually when the application server is being shutdown). Passing "true" to the shutdown() call causes the scheduler to wait for existing jobs to complete. Possible values are "true" or "false". The default is "false". 

The init parameter 'start-scheduler-on-load' can be used to specify whether you want the scheduler.start() method called when the servlet is first loaded. If set to false, your application will need to call the start() method before the scheduler begins to run and process jobs. Possible values are "true" or "false". The default is "true", which means the scheduler is started. 
A StdSchedulerFactory instance is stored into the ServletContext. You can gain access to the factory from a ServletContext instance like this: 
     StdSchedulerFactory factory = (StdSchedulerFactory) ctx 
                .getAttribute(QuartzFactoryServlet.QUARTZ_FACTORY_KEY); 
The init parameter 'servlet-context-factory-key' can be used to override the name under which the StdSchedulerFactory is stored into the ServletContext, in which case you will want to use this name rather than QuartzFactoryServlet.QUARTZ_FACTORY_KEY in the above example. 
The init parameter 'scheduler-context-servlet-context-key' if set, the ServletContext will be stored in the SchedulerContext under the given key name (and will therefore be available to jobs during execution). 
The init parameter 'start-delay-seconds' can be used to specify the amount of time to wait after initializing the scheduler before scheduler.start() is called. 
Once you have the factory instance, you can retrieve the Scheduler instance by calling getScheduler() on the factory. 

所要的jar文件包含: 
quartz-all-2.0.1.jar, jta-1.1.jar,log4j-1.2.14.jar,slf4j-api-1.6.1.jar,slf4j-log4j12-1.6.1.jar 
具体代码如下: 
web.xml 

Java代码    收藏代码
  1. <servlet>  
  2.         <servlet-name>QuartzInitializer</servlet-name>  
  3.         <display-name>Quartz Initializer Servlet</display-name>  
  4.         <servlet-class>  
  5.             org.quartz.ee.servlet.QuartzInitializerServlet  
  6.         </servlet-class>  
  7.         <load-on-startup>1</load-on-startup>      
  8.           
  9.         <init-param>  
  10.             <param-name>config-file</param-name>  
  11.             <param-value>/quartz.properties</param-value>  
  12.         </init-param>  
  13.           
  14.         <init-param>  
  15.             <param-name>shutdown-on-unload</param-name>  
  16.             <param-value>true</param-value>  
  17.         </init-param>  
  18.         <!--   
  19.         <init-param>  
  20.             <param-name>start-scheduler-on-load</param-name>  
  21.             <param-value>true</param-value>  
  22.         </init-param>  
  23.         <init-param>  
  24.             <param-name>wait-on-shutdown</param-name>  
  25.             <param-value>true</param-value>  
  26.         </init-param>  
  27.          -->       
  28.     </servlet>  


位于src下:quartz.properties 

Java代码    收藏代码
  1. org.quartz.scheduler.threadsInheritContextClassLoaderOfInitializer=true  
  2. org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true  
  3. # Configure Main Scheduler Properties     
  4.  org.quartz.scheduler.instanceName=QuartzScheduler  
  5.  org.quartz.scheduler.instanceId=AUTO  
  6.  org.quartz.scheduler.skipUpdateCheck=true  
  7.  org.quartz.scheduler.threadsInheritContextClassLoaderOfInitializer=true  
  8.  # Configure ThreadPool    
  9.  org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool  
  10.  org.quartz.threadPool.threadCount=3  
  11.  org.quartz.threadPool.threadPriority=5  
  12.  org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true  
  13.  # Configure JobStore    
  14.  org.quartz.jobStore.misfireThreshold=60000   
  15.  org.quartz.jobStore.class=org.quartz.simpl.RAMJobStore   
  16.  #org.quartz.jobStore.class=org.quartz.impl.jdbcjobstore.JobStoreTX  
  17.  #org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate  
  18.  #org.quartz.jobStore.useProperties=false  
  19.  #org.quartz.jobStore.dataSource=myDS  
  20.  #org.quartz.jobStore.tablePrefix=QRTZ_  
  21.  #org.quartz.jobStore.isClustered=false  
  22.  # Configure Datasources    
  23.  #org.quartz.dataSource.myDS.driver=org.postgresql.Driver  
  24.  #org.quartz.dataSource.myDS.URL=jdbc:postgresql://localhost/dev  
  25.  #org.quartz.dataSource.myDS.user=jhouse  
  26.  #org.quartz.dataSource.myDS.password=  
  27.  #org.quartz.dataSource.myDS.maxConnections=5   
  28.  # Configure Plugins   
  29. org.quartz.plugin.triggHistory.class=org.quartz.plugins.history.LoggingJobHistoryPlugin  org.quartz.plugin.jobInitializer.class=org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin  
  30.  org.quartz.plugin.jobInitializer.fileNames=quartz_job.xml  
  31.  org.quartz.plugin.jobInitializer.failOnFileNotFound=true  
  32.  org.quartz.plugin.jobInitializer.scanInterval=120  
  33.  org.quartz.plugin.jobInitializer.wrapInUserTransaction=false   


有些时候其实可按需配置,如下: 

Java代码
  1. org.quartz.scheduler.instanceName= MyQuartzScheduler  
  2. org.quartz.scheduler.rmi.export= false  
  3. org.quartz.scheduler.rmi.proxy= false  
  4. org.quartz.scheduler.wrapJobExecutionInUserTransaction= false  
  5. org.quartz.threadPool.class= org.quartz.simpl.SimpleThreadPool  
  6. org.quartz.threadPool.threadCount= 10  
  7. org.quartz.threadPool.threadPriority= 5  
  8. org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread= true  
  9. org.quartz.jobStore.misfireThreshold= 60000  
  10. org.quartz.jobStore.class= org.quartz.simpl.RAMJobStore  
  11. org.quartz.plugin.jobInitializer.class = org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin  
  12. #job and trigger configuration file  
  13. org.quartz.plugin.jobInitializer.fileNames =quartz_job.xml  


位于src下的:quartz_job.xml 

Java代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <job-scheduling-data  
  3.         xmlns="http://www.quartz-scheduler.org/xml/JobSchedulingData"  
  4.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.         xsi:schemaLocation="http://www.quartz-scheduler.org/xml/JobSchedulingData   
  6.                             http://www.quartz-scheduler.org/xml/job_scheduling_data_2_0.xsd"  
  7.         version="2.0">  
  8.   
  9.         <pre-processing-commands>  
  10.                 <delete-jobs-in-group>*</delete-jobs-in-group>  <!-- clear all jobs in scheduler -->  
  11.                 <delete-triggers-in-group>*</delete-triggers-in-group> <!-- clear all triggers in scheduler -->  
  12.         </pre-processing-commands>  
  13.   
  14.         <processing-directives>  
  15.                 <!-- if there are any jobs/trigger in scheduler of same name (as in this file), overwrite them -->  
  16.                 <overwrite-existing-data>true</overwrite-existing-data>  
  17.                 <!-- if there are any jobs/trigger in scheduler of same name (as in this file), and over-write is false, ignore them rather then generating an error -->  
  18.                 <ignore-duplicates>false</ignore-duplicates>  
  19.         </processing-directives>  
  20.   
  21.         <schedule>          
  22.                 <job>  
  23.                         <name>job1</name>                       
  24.                         <job-class>net.liuzd.tools.quartz.servlet.Job1</job-class>   
  25.                 </job>  
  26.                 <trigger>  
  27.                         <cron>  
  28.                                 <name>t1</name>                                 
  29.                                 <job-name>job1</job-name>                               
  30.                                 <cron-expression>0/10 * * * * ?</cron-expression>    
  31.                         </cron>  
  32.                 </trigger>                 
  33.                   
  34.                  <job>  
  35.                         <name>job2</name>                       
  36.                         <job-class>net.liuzd.tools.quartz.servlet.Job2</job-class>   
  37.                 </job>  
  38.   
  39.                 <trigger>  
  40.                         <cron>  
  41.                                 <name>t2</name>                                 
  42.                                 <job-name>job2</job-name>                               
  43.                                 <cron-expression>0/20 * * * * ?</cron-expression>      
  44.                         </cron>  
  45.                 </trigger>                 
  46.   
  47.         </schedule>          
  48. </job-scheduling-data>  


src下的log4j.xml 

Java代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">  
  3. <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">  
  4.   <appender name="default" class="org.apache.log4j.ConsoleAppender">  
  5.     <param name="target" value="System.out"/>  
  6.     <layout class="org.apache.log4j.PatternLayout">  
  7.       <param name="ConversionPattern" value="[%p] %d{yyyy-MM-dd hh:mm:ss.SSS aa} %t [%c]%n%m%n%n"/>  
  8.     </layout>  
  9.   </appender>  
  10.  <logger name="org.quartz">  
  11.    <level value="info" />  
  12.  </logger>  
  13.   <root>  
  14.     <level value="info" />  
  15.     <appender-ref ref="default" />  
  16.   </root>        
  17. </log4j:configuration>  


二个任务类: 

Java代码    收藏代码
  1. import java.text.SimpleDateFormat;  
  2. import java.util.Date;    
  3.     
  4. import org.quartz.Job;    
  5. import org.quartz.JobExecutionContext;    
  6. import org.quartz.JobExecutionException;    
  7. import org.slf4j.Logger;  
  8. import org.slf4j.LoggerFactory;  
  9.     
  10. public class Job1 implements Job {    
  11.       
  12.     private static Logger _log = LoggerFactory.getLogger(Job1.class);  
  13.         
  14.     public Job1() {    
  15.             
  16.     }      
  17.     
  18.     public void execute(JobExecutionContext context)    
  19.             throws JobExecutionException {    
  20.         _log.info("执行天涯的第一个任务: " + new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));    
  21.     }    
  22. }    
  23.   
  24. import java.text.SimpleDateFormat;  
  25. import java.util.Date;    
  26.     
  27. import org.quartz.Job;    
  28. import org.quartz.JobExecutionContext;    
  29. import org.quartz.JobExecutionException;    
  30. import org.slf4j.Logger;  
  31. import org.slf4j.LoggerFactory;  
  32.     
  33. public class Job2 implements Job {    
  34.         
  35.     private static Logger _log = LoggerFactory.getLogger(Job2.class);  
  36.       
  37.     public Job2() {    
  38.     }    
  39.     
  40.     
  41.     public void execute(JobExecutionContext context)    
  42.             throws JobExecutionException {    
  43.         _log.info("执行天涯的第二个任务: " + new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));  
  44.     }    
  45. }   


在WEB应用启动时控制台输出结果如下: 

Log代码    收藏代码
  1. [INFO] 2011-08-15 02:18:50.015 下午 QuartzScheduler_Worker-2 [org.quartz.plugins.history.LoggingJobHistoryPlugin]  
  2. Job DEFAULT.job1 fired (by trigger DEFAULT.t1) at:  14:18:50 08/15/2011  
  3.   
  4. [INFO] 2011-08-15 02:18:50.015 下午 QuartzScheduler_Worker-2 [net.liuzd.tools.quartz.servlet.Job1]  
  5. 执行天涯的第一个任务: 2011-08-15 02:18:50  
  6.   
  7. [INFO] 2011-08-15 02:18:50.015 下午 QuartzScheduler_Worker-2 [org.quartz.plugins.history.LoggingJobHistoryPlugin]  
  8. Job DEFAULT.job1 execution complete at  14:18:50 08/15/2011 and reports: null  
  9.   
  10. [INFO] 2011-08-15 02:19:00.000 下午 QuartzScheduler_Worker-3 [org.quartz.plugins.history.LoggingJobHistoryPlugin]  
  11. Job DEFAULT.job1 fired (by trigger DEFAULT.t1) at:  14:19:00 08/15/2011  
  12.   
  13. [INFO] 2011-08-15 02:19:00.000 下午 QuartzScheduler_Worker-3 [net.liuzd.tools.quartz.servlet.Job1]  
  14. 执行天涯的第一个任务: 2011-08-15 02:19:00  
  15.   
  16. [INFO] 2011-08-15 02:19:00.000 下午 QuartzScheduler_Worker-3 [org.quartz.plugins.history.LoggingJobHistoryPlugin]  
  17. Job DEFAULT.job1 execution complete at  14:19:00 08/15/2011 and reports: null  
  18.   
  19. [INFO] 2011-08-15 02:19:00.000 下午 QuartzScheduler_Worker-1 [org.quartz.plugins.history.LoggingJobHistoryPlugin]  
  20. Job DEFAULT.job2 fired (by trigger DEFAULT.t2) at:  14:19:00 08/15/2011  
  21.   
  22. [INFO] 2011-08-15 02:19:00.000 下午 QuartzScheduler_Worker-1 [net.liuzd.tools.quartz.servlet.Job2]  
  23. 执行天涯的第二个任务: 2011-08-15 02:19:00  
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值