Top "Spring-retry" questions

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.

@Retryable not making retries when triggered by Integration tests In A Spring Boot Application

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-retry
Spring Retry with Transactional

Is 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-retry
Spring annotation @Retryable - how to set an interceptor

I 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-retry
Is it possible to set RetryPolicy in spring-retry based on HttpStatus status code?

Is it possible to set RetryPolicy in spring retry (https://github.com/spring-projects/spring-retry) based on error status code? e.…

spring spring-retry
Which HTTP errors should never trigger an automatic retry?

I'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-retry
Spring Retry @Recover passing parameters

I couldn't find any info about a possibility of action I need. I am using @Retryable annotation with @Recover handler …

java spring recover spring-retry
Spring retry find the last retry

I 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-retry
Exponential backoff with message order guarantee using spring-kafka

I'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-backoff
Spring-Retry with Circuit breaker

I 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