Declarative HTTP Client in Spring Cloud – OpenFeign
What is OpenFeign OpenFeign (originally Netflix Feign) is a declarative REST client that integrates: Ribbon: Client-side load balancing Eureka: Service discovery OpenFeign = “Interface Proxy” for microservice calls, where you only need to define an interface, and Feign automatically generates the implementation class, completing service discovery + load balancing + HTTP calls automatically! Advantages of … Read more