I have a Spring @scheduled task in my application that will start every 2 minutes. In some situation, the task never comes back so the task will not execute after this.
@Scheduled(fixedDelay = ....)
private void task() {
}
Anyway to set a timeout for the scheduled task to force it end after a certain period of time?