Spring Framework アプリケーションに複数の QuartzJobBean があります。これらのジョブは、必要に応じてスケジュールされます。次のような問題があります。
ジョブは 5 秒ごとに起動します。
まあ言ってみれば;
1st execution at 00.00.05
2nd execution at 00.00.10
3rd execution at 00.00.15
.
.
.
etc.
ただし、1 回目の実行が 6 秒間続いた場合、2 回目の実行は最初の実行の完了直後に行われます。可能であれば、次のようにジョブをスケジュールしたいですか?
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.
前もって感謝します。