Is it possible to create an asynchronous method that can be retried if there is any exception with spring?
@Retryable
@Async
public void myMethod() throws Exception {
// Do some stuff
}
Is it possible to create an asynchronous method that can be retried if there is any exception with spring?
@Retryable
@Async
public void myMethod() throws Exception {
// Do some stuff
}