Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您能否告诉我在 grails 应用程序中重新安排已经过期的石英作业的方法是什么?
您可以使用 QuartzScheduler 的以下方法进行重新调度。
java.util.Date rescheduleJob(java.lang.String s, java.lang.String s1, org.quartz.Trigger trigger)
来自 Quartz 源代码:它删除具有给定名称的触发器,并存储新的给定触发器 - 它必须与同一个作业相关联(新触发器必须具有指定的作业名称和组) - 但是,新触发器需要与旧触发器的名称不同。