Quartz 调度程序启动但未运行更多时间

发布于 2024-12-26 12:35:50 字数 819 浏览 0 评论 0原文

在我的网络应用程序 (Tomcat 6) 中,我在扩展 HttpServlet 的类中定义了一个 Quartz Scheduler:调用该类进行 init。

调度程序立即运行,间隔为 1 分钟,但在第一步之后,它不再运行。

当我通过网页更改调度程序的参数时,调度程序可以使用相同的代码正确运行。

这是代码:

JobDetail job = newJob(ClassOfTask.class).withIdentity(NAME_JOB_MAIL, NAME_JOB_THREAD).build();
//various code
String cronExpression = buildCronExpression();
Trigger trigger = newTrigger().withIdentity(NAME_TRIGGER).startAt(startJob).endAt(endJob).forJob(job.getKey()).withSchedule(cronSchedule(cronExpression)).build();
scheduler.addJob(jobDetail, true);
scheduler.scheduleJob(trigger);

我尝试插入

scheduler.start();

但问题仍然存在。

当我修改网页中的计划任务时,我使用此方法

scheduler.rescheduleJob(oldTrigger.getKey(), trigger);

,在本例中它有效。

这是什么问题呢?

In my web-app (Tomcat 6) I define a Quartz Scheduler in a class extending HttpServlet: this class is called to init.

The scheduler runs immediately and it has an interval of 1 minute, but after the first step it's not running.

When I change the parameter of scheduler by webpage, the scheduler is running correctly with the same code.

This is the code:

JobDetail job = newJob(ClassOfTask.class).withIdentity(NAME_JOB_MAIL, NAME_JOB_THREAD).build();
//various code
String cronExpression = buildCronExpression();
Trigger trigger = newTrigger().withIdentity(NAME_TRIGGER).startAt(startJob).endAt(endJob).forJob(job.getKey()).withSchedule(cronSchedule(cronExpression)).build();
scheduler.addJob(jobDetail, true);
scheduler.scheduleJob(trigger);

I tried to insert

scheduler.start();

but the problem remains.

When I modify the scheduled task in web page, I use this method

scheduler.rescheduleJob(oldTrigger.getKey(), trigger);

and in this case it works.

What's it the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文