@Retryable and @Async with spring

0

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
}
    
asked by anonymous 25.03.2016 / 00:01

0 answers