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 >>
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 :
- Create customer service (microservice).
- Create configuration service to centralize services configurations .
- We create a service discovery to register our service and where we use eureka discovery.
- And finally we try to create a proxy to manage multiple instances of our microservices.