How to achieve orchestration with spring boot micr

2019-08-01 23:38发布

问题:

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

回答1:

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