Example

In this lesson, we'll introduce a Netflix stack coding example.

Introduction

The example for this chapter can be found at https://github.com/ewolff/microservice. It consists of three microservices:

  • The catalog microservice that manages the information about the items.

  • The customer microservice that stores the data of the customers.

  • The order microservice that can accept new orders by using the catalog and the customer microservice.

Architecture of the example

  • Each of the microservices has its own web interface with which users can interact.
  • Among each other, the microservices
...