Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based behaviour that is easy to extend and customize.
I have a simple method in a Service in a SpringBoot Application. I have the retry mechanism setup for that …
java spring spring-boot spring-retryIs Spring Retry guaranteed to work with Spring's @Transactional annotation? Specifically, I'm trying to use @Retryable for optimistic locking. It …
java spring spring-data spring-retryI am using a @Retryable annotation on a method in a @Serviceclass @Service @EnableRetry public class PushService { @Retryable(maxAttempts=5) public …
java spring spring-rabbit spring-retryIs it possible to set RetryPolicy in spring retry (https://github.com/spring-projects/spring-retry) based on error status code? e.…
spring spring-retryI'm trying to make a few microservices more resilient and retrying certain types of HTTP requests would help with that. …
http microservices httpresponse hystrix spring-retryI couldn't find any info about a possibility of action I need. I am using @Retryable annotation with @Recover handler …
java spring recover spring-retryI am using Spring-retry-1.2.0, Retry is working fine, but in my method i want to find it out whether the …
spring spring-mvc spring-integration spring-retryI'm trying to implement a Spring Boot-based Kafka consumer that has some very strong message delivery guarentees, even in a …
apache-kafka messaging spring-kafka spring-retry exponential-backoffI am trying to leverage both the retry and circuit breaker mechanism of spring-retry. I tried to use both annotations(@…
spring spring-retry circuit-breaker