spring-retry
spring-retry copied to clipboard
The current design of the RetryTemplate and RecoveryCallback is to not throw any exception if a recovery callback is provided. There are cases where even after recovery, the caller wants...
A number of Spring projects support AdviceMode.ASPECTJ (e.g. @EnableCaching, @EnableTransactionManagement) to enable support for AspectJ load-time-weaving. Would it make since for spring-retry to also support this feature.
Is it possible to stop retries when the application is shutting down ? When configuring retry for a long period of time, it blocks the application shutdown until every retries...
Currently, `@CircuitBreaker` always wraps failures into into an `ExhaustedRetryException`. This hides the true nature of the failure and makes it furthermore impossible to figure out whether the circuit breaker is...
I want to achieve following behaviour: Specific execution failures are first retried according to e.g. a `SimpleRetryPolicy`, then if the policy is exceeded the failure is recorded by the CircuitBreaker....
Reading the documentation, it seems to me it would be helpful if the matching algorithm for determining a corresponding Recover method was explicitly spelled out. From what I can tell,...
AspectJ (for post complier weave) or CGLIB(dynamic weave)
Will it support android in the future?
The docs for retryable annotation state that default behaviour is no backoff: ``` /** * Specify the backoff properties for retrying this operation. The default is no * backoff, but...
I have a @HystrixCommand annotated method that makes a restTemplate call. I also have another one that makes a SOAP call. When an exception is thrown inside the hystrixcommand annotated...