从 3.0 版本开始,Quartz 调度程序不再对 Spring 有用吗?

发布于 2024-12-04 13:08:31 字数 405 浏览 2 评论 0原文

从 Spring 3 开始,Spring 的内部调度功能包括对 cron 类型表达式的支持,这与 Quartz 的 cron 触发器非常相似。

是否有任何理由想要将 Quartz 与 Spring 集成?

http:// /static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/scheduling.html#scheduling-task-scheduler

Spring's internal scheduling capability as of Spring 3, includes support for cron-type expressions, and this is very similar to Quartz's cron trigger.

Is there any reason why one would want to integrate Quartz with Spring?

http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/scheduling.html#scheduling-task-scheduler

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人心善变 2024-12-11 13:08:31

是的,您将需要 quarz,例如:

  • 如果您需要在运行时添加新作业,或者
  • 如果您需要在运行时更改间隔(cron 表达式),
  • 如果您需要有关作业的统计信息,
  • ...

一般来说:如果您需要的不仅仅是在固定时间运行一个方法。

Yes, you will need quarz for example:

  • if you need to add new jobs at runtime, or
  • if you need to change the interval (cron expression) at runtime,
  • if you need statistics about the jobs,
  • ...

in general: if you need more than simply runing a method at fixed time.

烙印 2024-12-11 13:08:31

Afaik,Spring 调度不支持持久作业存储、恢复由于停机而导致的失败或集群调度程序。 Quartz 多年来一直拥有这一切。

Afaik, Spring scheduling doesn't support persistent job stores, recovering misfires due to downtime, or clustered schedulers. Quartz has had all of this for years.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文