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

OpenFeign: The Remote Messenger for Java HTTP Clients

OpenFeign: The Remote Messenger for Java HTTP Clients

Brother Niu’s Java Kitchen: OpenFeign, The Remote Messenger for Java HTTP Clients! Introduction: From “Kitchen Novice” to “Master of Remote Delivery” Today, my friends, let’s talk about something interesting—OpenFeign! What is OpenFeign? In simple terms, it’s our “remote messenger” in Java, helping us easily handle HTTP requests between services. Speaking of this, I remember when … Read more

OpenFeign: The Poet of Java HTTP Clients

OpenFeign: The Poet of Java HTTP Clients

OpenFeign: The Poet of Java HTTP Clients Introduction: Transitioning from Tester to Java Developer Hey friends, today I have a lot to talk about! I remember when I first transitioned from testing to Java development, I was completely confused when I encountered microservices for the first time… We click away on our browsers every day, … Read more

OpenFeign: The HTTP Client Bard!

OpenFeign: The HTTP Client Bard!

OpenFeign: The HTTP Client Bard! Introduction Friends, Niu Ge recently took on a project that requires front-end and back-end separation, using HTTP for communication between microservices. At first glance, there seems to be no problem: we just need to write an HttpClient and add some RestTemplate, right? But once I dived in, I found that … Read more