如何以编程方式控制调度程序作业,例如启动和停止
我们有启动、停止和恢复单个作业以及获取单个作业的状态以显示在网页上的要求。请帮助我在 Quartz Scheduler 中实现此功能。
we have requirement like to start, stop and resume individual job and get the status for individual job to display on web page. Please help me on the same to implement this functionality in Quartz Scheduler.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该获得对quartz
Scheduler
对象的引用,并且您可以从那里执行所有操作。在 spring 中,您可以通过 org.springframework.scheduling.quartz.SchedulerFactoryBean 获取它检查此问题以获得更好的弹簧石英支撑。
You should obtain a reference to the quartz
Scheduler
object, and you can do all from there. In spring you can obtain it throughorg.springframework.scheduling.quartz.SchedulerFactoryBean
Check this question for a better spring-quartz support.