Tag: retryRESTAPI

  • How to retry service calls in Spring Boot ?

    Let’s say you are building a spring boot app which calls other third party REST APIs. And those APIs are not very reliable. They throw error at times but works fine most of the times. So you want to retry hitting them when they error out so that you are chance of getting a response…