在 Spring 中获取 Quartz JobStore 实现

发布于 2024-10-02 23:37:04 字数 330 浏览 3 评论 0原文

有什么方法可以在 Spring 应用程序上下文中获取由 Spring 的 SchedulerFactoryBean 创建的 JobStore 实现吗?我正在尝试在我的应用程序中为 JobStore 实现一个 GUI(不需要太花哨),但我发现 Quartz 简直就是 **3$# 中的史诗般的痛苦,而且只是一个糟糕的API。或者,有谁知道创建 JobStore 实现 bean 的简单方法?我发现 Quartz 内置的那些不太可用/易于访问,Spring 附带的也不是。也许我只是错过了一些东西。我目前正在运行 Spring 2.5.6 和 Quartz 1.6.0。我还无法升级到 Spring 3.0,但如果需要,我可以升级 Quartz 库。

Is there any way to get the JobStore implementation created by Spring's SchedulerFactoryBean in a Spring application context ? I'm trying to implement a GUI for the JobStore in my application (doesn't need to be too fancy), but I'm finding that Quartz is nothing short of an epic pain in the **3$#, and just a terrible API. Alternatively, does anyone know of an easy way to create a JobStore implementing bean ? I've found that the ones that come built-in with Quartz aren't very usable / accessible, nor is the one that comes with Spring. Maybe I'm just missing something. I'm currently running Spring 2.5.6 and Quartz 1.6.0. I can't upgrade to Spring 3.0 just yet, but I can upgrade the Quartz library if need be.

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

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

发布评论

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

评论(1

慕烟庭风 2024-10-09 23:37:04

据我所知,在 Spring 中获取 org.quartz.JobStore 实现并没有真正简单的方法,该实现既使用 Quartz 中的 JobStoreSupport,又不需要配置 PITA,所以我最终使用了直接调度器,尽管JobStore有一些调度器接口没有的功能。

From what I've been able to tell, there's no really easy way to get an org.quartz.JobStore implementation in Spring that uses both the JobStoreSupport in Quartz, and isn't a PITA to configure, so I just wound up using the Scheduler directly, even though the JobStore has some functions that the Scheduler interface doesn't.

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