`
yimeng528
  • 浏览: 188752 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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  
分享到:
评论

相关推荐

    使用Quartz实现定时功能

    1. **Job(作业)**:这是Quartz中的核心概念之一,它代表了要执行的任务。一个`Job`实例必须实现`org.quartz.Job`接口,并且重写`execute`方法来定义具体的任务逻辑。如果任务需要保存状态,则需要实现`StatefulJob...

    quartz开源作业调度框架

    1. **添加QuartzInitializerServlet**:在`web.xml`中配置`QuartzInitializerServlet`。 2. **配置文件**:可以通过配置文件`quartz.properties`或`quartz-job.xml`来定义触发器和定时描述等。 #### 五、Quartz高级...

    Quartz定时调度样例

    &lt;servlet-class&gt;org.quartz.ee.servlet.QuartzInitializerServlet &lt;param-name&gt;config-file &lt;param-value&gt;/schedule/quartz.properties &lt;param-name&gt;shutdown-on-unload &lt;param-value&gt;true ...

    Quartz的使用说明.doc

    在 Web 应用中使用 Quartz,通常需要在 `web.xml` 文件中配置 `QuartzInitializerServlet`,并提供配置文件(如 `quartz.properties` 或 `quartz-job.xml`)来定义 Triggers 和 JobDetails。 通过以上描述,我们...

    Quartz调度学习笔记

    例如,你可以配置 `QuartzInitializerServlet` 类作为 Servlet,并设置初始化参数 `shutdown-on-unload` 为 `true`,这意味着当应用服务器卸载时,Quartz 会自动关闭。同时,你需要指定 `config-file` 参数为 `...

    Quartz 时间定时执行框架

    2. **配置Web应用启动器**:在`web.xml`中配置Quartz初始化Servlet,这样当Web应用启动时,Quartz也能随之初始化。具体配置如下: ```xml &lt;servlet-name&gt;QuartzInitializer &lt;display-name&gt;...

    quartz web 排程

    - 在Java Web应用中,需要在web.xml中配置Quartz的监听器(org.quartz.ee.servlet.QuartzInitializerServlet)以启动调度器。 - 配置quartz.properties文件,设定数据库存储Job和Trigger(如果选择使用数据库存储...

    Quartz 定时程序框架

    在Web应用中,我们可以通过`web.xml`配置`org.quartz.servlet.QuartzInitializerServlet`来启动Quartz。例如,我们可以设置初始化参数`org.quartz.scheduler.instanceName`为应用的实例名,`org.quartz.jobStore....

    Quartz-Job-Scheduling-Framework-中文版-V0.9.1.zip

    内容提要:Quartz 从属性文件中加载多个插件类时不能保证加载的顺序,所以本节引入一个自定义的统一按顺序加载其他插件的,名之为插件加载器的东西,其实也就是其他插件类的父亲。 第八章. 使用 Quartz 插件 (第五...

    quartz.doc

    QuartzInitializerServlet.startScheduler(app); // 启动任务 } catch (Exception e) {} } } ``` #### 四、总结 本文详细介绍了如何配置和部署 Quartz 定时任务框架,主要包括了 `quartz.properties` 配置文件的...

    Quartz 定时任务web使用

    - 在Web应用中使用Quartz,通常需要在web.xml中配置ContextLoaderListener和QuartzInitializerServlet。Quartz的配置文件(如quartz.properties)用于设置调度器的属性,如job store类型、线程池大小等。 6. **API...

    Quartz Job

    - **Servlet Class**: org.quartz.ee.servlet.QuartzInitializerServlet,指定了初始化Servlet的具体类。 - **Init-Param**: - **config-file**: /quartz.properties,指定Quartz配置文件的位置。 - **shutdown-...

    quartz实现定时功能实例详解(servlet定时器配置方法)

    要在Servlet环境中使用Quartz,需要在`web.xml`中配置QuartzInitializerServlet,这将初始化Quartz并将其与Web应用程序集成。此外,可以使用`quartz.properties`或`quartz-job.xml`文件来定义Trigger和Job的详细...

    quartzDem例子

    这里可能包含了启动Quartz Scheduler的监听器配置,例如`org.quartz.ee.servlet.QuartzInitializerServlet`,以及相关的初始化参数。 3. **quartzDem**:这是一个包含具体业务逻辑的Java类或包。它应该包含了自定义...

Global site tag (gtag.js) - Google Analytics