Web 应用程序中的 Quartz 调度程序 [英] Quartz Scheduler in Web application

查看:55
本文介绍了Web 应用程序中的 Quartz 调度程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在学习石英并尝试了一些在控制台应用程序中工作的示例.现在正在尝试网络应用程序.以下是我所做的.

web.xml

</web-app>

quartz.properties

org.quartz.plugin.jobInitializer.class = org.quartz.plugins.xml.XMLSchedulingDataProcessorPluginorg.quartz.plugin.jobInitializer.fileNames =quartz-config.xmlorg.quartz.plugin.jobInitializer.failOnFileNotFound = trueorg.quartz.plugin.jobInitializer.scanInterval = 10org.quartz.plugin.jobInitializer.wrapInUserTransaction = false# 配置线程池org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPoolorg.quartz.threadPool.threadCount = 30org.quartz.threadPool.threadPriority = 5

quartz-config.xml

<预处理命令><delete-jobs-in-group>*</delete-jobs-in-group><!-- 清除调度程序中的所有作业--><delete-triggers-in-group>*</delete-triggers-in-group><!-- 清除调度程序中的所有触发器--></预处理命令><处理指令><overwrite-existing-data>true</overwrite-existing-data><ignore-duplicates>false</ignore-duplicates></处理指令><日程安排><工作><name>MyJob</name><job-class>com.kaplan.external.quartz.KpubScheduler</job-class></工作><触发器><简单><name>TenSecondIntervals</name><job-name>MyJob</job-name><repeat-count>-1</repeat-count><!-- 永远重复--><repeat-interval>10000</repeat-interval><!-- 每 10 秒--></简单></触发器></日程></job-scheduling-data>

KpubScheduler.java

import org.apache.commons.logging.Log;导入 org.apache.commons.logging.LogFactory;导入 org.quartz.JobExecutionContext;导入 org.quartz.JobExecutionException;导入 org.quartz.StatefulJob;公共类 KpubScheduler 实现 StatefulJob {受保护的静态最终日志日志 = LogFactory.getLog(KpubScheduler.class);public void execute(JobExecutionContext context) 抛出 JobExecutionException {尝试 {System.out.println("Quartz 配置.........");log.info("进入石英配置");} 捕捉(异常前){log.info("进入石英配置");}}}

现在我已经启动了服务器.启动后,我的 KpubScheduler 必须被调用,我应该获取日志信息和 Sysout.但是什么也没有发生.如果我看一下日志,它只是给出了这个

2010 年 12 月 29 日晚上 8:21:37 org.apache.catalina.core.ApplicationContext 日志信息:QuartzInitializer:调度程序已启动...2010 年 12 月 29 日晚上 8:21:37 org.apache.catalina.core.ApplicationContext 日志信息:QuartzInitializer:将 Quartz 调度器工厂存储在 servlet 上下文中的键:org.quartz.impl.StdSchedulerFactory.KEY

可能是什么问题?我做得对吗?.

解决方案

理论上好像没问题,但是你的意思是这个的用法

可能会导致您的作业被删除?你可以试试没有它们吗?

我的应用程序看起来像你的,但我对 Quartz 没有问题.

您确定为 KpubScheduler 正确配置了日志级别吗?

I am learning quartz and Have tried some samples which works in Console application. Now am trying in web aplications. Following is what I did.

web.xml

<?xml version="1.0" encoding="UTF-8"?>
 <web-app>
 <servlet>
     <servlet-name>QuartzInitializer</servlet-name>
     <display-name> Quartz Initializer Servlet</display-name>
     <servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet-class>
     <load-on-startup>1</load-on-startup>
     <init-param>
         <param-name>config-file</param-name>
         <param-value>quartz.properties</param-value>
     </init-param>
     <init-param>
         <param-name>shutdown-on-unload</param-name>
         <param-value>true</param-value>
     </init-param>
     <init-param>
         <param-name>start-scheduler-on-load</param-name>
         <param-value>true</param-value>
     </init-param>
 </servlet>
</web-app>

quartz.properties

org.quartz.plugin.jobInitializer.class =    org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin
org.quartz.plugin.jobInitializer.fileNames = quartz-config.xml
org.quartz.plugin.jobInitializer.failOnFileNotFound = true
org.quartz.plugin.jobInitializer.scanInterval = 10
org.quartz.plugin.jobInitializer.wrapInUserTransaction = false

# Configuring ThreadPool
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 30
org.quartz.threadPool.threadPriority = 5

quartz-config.xml

<?xml version="1.0" encoding="UTF-8"?>
   <job-scheduling-data
xmlns="http://www.quartz-scheduler.org/xml/JobSchedulingData"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.quartz-scheduler.org/xml/JobSchedulingData http://www.quartz-scheduler.org/xml/job_scheduling_data_1_8.xsd"
version="1.8">

<pre-processing-commands>
    <delete-jobs-in-group>*</delete-jobs-in-group>  <!-- clear all jobs in scheduler -->
    <delete-triggers-in-group>*</delete-triggers-in-group> <!-- clear all triggers in scheduler -->
</pre-processing-commands>

<processing-directives>
    <overwrite-existing-data>true</overwrite-existing-data>
    <ignore-duplicates>false</ignore-duplicates>
</processing-directives>

<schedule>
    <job>
        <name>MyJob</name>
        <job-class>com.kaplan.external.quartz.KpubScheduler</job-class>
    </job>
    <trigger>
        <simple>
            <name>TenSecondIntervals</name>
            <job-name>MyJob</job-name>
            <repeat-count>-1</repeat-count> <!-- repeat forever  -->
            <repeat-interval>10000</repeat-interval>  <!--  every 10 seconds -->
        </simple>
    </trigger>

</schedule>
 </job-scheduling-data>

KpubScheduler.java

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.StatefulJob;

 public class KpubScheduler implements StatefulJob {

  protected static final Log log = LogFactory.getLog(KpubScheduler.class);  
  public void execute(JobExecutionContext context) throws JobExecutionException {
    try {
         System.out.println("Quartz Config..........");
         log.info("entering the quartz config");  

    } catch (Exception ex) {
        log.info("entering the quartz config");  

    }
  }
}

Now I have started the server. After it gets started, my KpubScheduler has to get invoked and I should get the log info's and Sysout's. But Nothing is happening. If I have a look at the log, its just giving this

Dec 29, 2010 8:21:37 PM org.apache.catalina.core.ApplicationContext log
INFO: QuartzInitializer: Scheduler has been started...
Dec 29, 2010 8:21:37 PM org.apache.catalina.core.ApplicationContext log
 INFO: QuartzInitializer: Storing the Quartz Scheduler Factory in the servlet context at key: org.quartz.impl.StdSchedulerFactory.KEY

What may be the problem?. Am I doing it right?.

解决方案

it seems theoretically ok, but do you mean that the usage of this <pre-processing-commands /> causes maybe to be deleted your jobs? can you try without them?

my application seems like yours but i have no problem with Quartz.

Are you sure that you did configure your log levels correctly for KpubScheduler?

这篇关于Web 应用程序中的 Quartz 调度程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆