我在 Spring Framework 应用程序中有多个 QuartzJobBean。这些工作是根据他们的需要安排的。我有如下问题。
每 5 秒触发一次作业。
比方说;
1st execution at 00.00.05
2nd execution at 00.00.10
3rd execution at 00.00.15
.
.
.
etc.
但是,如果第一次执行持续 6 秒,则第二次执行将在第一次执行完成后立即执行。如果可能,我想按以下方式安排我的工作?
1st execution at 00.00.05 (execution time 6 seconds)
2nd execution at 00.00.16 (execution time 3 seconds)
3rd execution at 00.00.24 (execution time x seconds)
4th execution at 00.00.24+5+x
.
.
.
etc.
提前致谢。