How to retry requests correctly with Feign
May 5, 2023 · 548 words · 3 min
Network is unstable, it can fail at any moment. In this article, I’ll share how to retry requests correctly with Feign.
Feign is a Java to HTTP client binder inspired by Retrofit, JAXRS-2.0, and WebSocket. Feign’s first goal was reducing the complexity of binding Denominator uniformly to HTTP APIs regardless of ReSTfulness.
Feign - Introduction