What is a Microservices Architecture?


Microservices is a software architecture model .this model consiste of decomposing a monolith application into multiple smaller services are very tightly focused on doing one thing and doing it well.Each  is individually deployable and composed then a single application independent from other services...

More >>






Your first microservice



During this tutorial, we’ll try to explain how we can create microservices using many useful tools and from scratch.
We follow the plan below during this demonstration :
  1. Create customer service (microservice).
  2. Create configuration service to centralize services configurations  .
  3. We  create a service discovery to register our service and where we use eureka discovery.
  4. And finally we try to create a proxy to manage multiple instances of our microservices.