In this post, we will see how to resolve Missing property (BadRequest) for Groovy template expansion Question: I’m using Resilience4j and I need to ignore some exceptions when using Retry. One of the exceptions is the: org.springframework.web.reactive.function.client.WebClientResponseException$BadRequest But I am ...
In this post, we will see how to resolve Retry and circuit breaker both with retrofit 2 and resillence4j Question: I know the default order of resillence4j is Retry(CircuitBreaker(func())) …. But I am in need of something like this CircuitBreaker(Retry(func()))…. ...
In this post, we will see how to resolve Java Spring rate limiter block specific duration when ratio reached Question: Currently I have a requirement: Apply rate limiter for an API. If this API get called over 100 times per ...
Question: I am new to circuit breakers and have recently implemented them in one of my services. I was going through the documentation Resilience 4J official documentation and found two properties that we can configure for circuit breakers. slidingWindowSize minimumNumberOfCalls ...
Question: I am using both @CircuitBreaker and @Retry annotations on a service method. When I apply both the configurations, the retry configurations are not taking affect. Below is the configuration: Service method: Where am I going wrong? Also, how to ...