Hey,
I'm trying to create a scheduler in Jira which will process certain type of issues periodically. Also during any scheduler operation, if their is an operational failure i would like to have an exponential retry mechanism to handle those errors.
Can i use Spring retry for this.
Eg:
@Retryable(maxAttempts = 8, value = {Exception.class }, backoff = @Backoff(delay = 60000, multiplier = 2, maxDelay = 21600000))
Please advice.
Thanks,