Tag: rest client

  • How to write a generic REST client in Spring Boot?

    We live in the world of microservices. REST APIs are all over and they communicate with each other. To communicate with each other in the Spring World , they use RestTemplate or Spring WebClient or Java’s own HttpClient(Java 11) or any other third party libraries. We call them REST clients. It will be nice if…