如何禁用 Quartz JDBCJobStore 中的作业?
在 JDBCJobStore 中禁用作业而不删除其作业或触发器记录且不擦除 cron 表达式的最佳方法是什么?
What is the best way to disable a job in the JDBCJobStore without deleting it's job or trigger records and without wiping the cron expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 scheduler.pauseJob () 或 scheduler.pauseTrigger()。
或者,您可以使用以下 SQL 脚本:
Use scheduler.pauseJob() or scheduler.pauseTrigger().
Alternatively you can use the following SQL script:
使用
JobStore
的pauseJob
或pauseJobGroup
方法。Use the
pauseJob
orpauseJobGroup
methods ofJobStore
.