How to achieve orchestration with spring boot micro service?

sathees picture sathees · May 19, 2017 · Viewed 8k times · Source

what is best way to orchestrate micro services in spring boot.

Answer

Tom picture Tom · May 19, 2017

You have many options but I will list 3 of them that I would choose from:

  1. Directly call the other microservice using REST calls (hard code the URL in a property file or create a service for inter service communication).
  2. Setup microservice architecture with spring-cloud and netflix OSS
  3. Setup microservice architecture with spring-cloud and kubernetes