Microservices Tutorial: Ribbon as a Load balancer

Microservices Tutorial: Ribbon as a Load balancer
In the previous Microservice tutorial , we have learned How to communicate with other Microservice using Feign as a REST client and Eureka server as a Service discovery. In all cases, We consider only one instance of a Microservice-- which calls...

Is Data Abstraction and Encapsulation a fancy term of Information Hiding?

Is Data Abstraction and Encapsulation a fancy term of Information Hiding?
I have seen many developer/Architect use the term interchangeably and has the reason for it but yes there are differences-- a huge difference in terms of hiding information. I try to explain it in a Simple way. Let’s start by the definition. Encapsulation:...

Microservices Communication: Feign as Rest Client

Microservices Communication: Feign as Rest Client
In the previous microservice tutorial, we have learned How Microservice communicates with each other using RestTemplate. In this tutorial, we will learn How one microservice communicates with Other via Feign Client . This is the third part of Microservice...