Tag: service registry

  • How to do client side load balancing in Spring Boot?

    Let’s say you have created a set of microservices. They communicate to each other through a service registry like Eureka. One shortcoming in communicating through service registry is load balancing is not taken care of by default. You need to take care of that through a client side load balancer or a service side load…

  • How to talk to services in a service registry in Spring Boot?

    In this post we saw how to set up a service registry in Spring Boot. You can register all your microservices in a single service registry which will make it easier for each microservice to communicate with each other. In this post let’s see how to do the communication part. How can a microservice discover…

  • How to set up a Service Registry in Spring Boot?

    Let’s say you have created few microservices. They talk to each other. You manually configure the URL of each microservice which each microservice talks to. You add them in application.yml files. Maintaining them can be difficult. And if there are multiple instances of each microservice , you may need to configure each instance URL or…