java - Annotation for retrying all methods in a class instead of using @Retryable for each method -
we use @retryable annotation retry specific methods in class.
is there annotation commonly retry methods in class.instead of making in method level, can move class level.
add in configuration , follow http://www.baeldung.com/spring-retry
@configuration @enableretry public class appconfig { ... }
Comments
Post a Comment