
A Microservices Architecture II
This is an example architecture for microservices. It is the second version after starting with http://www.thomas-letsch.de/2016/a-microservice-architecture/. After reading and evaluating some more examples (really great: Magnus Larsson: Blog Series – Building Microservices) the architecture changed a little bit. Changes API…

A Microservices Architecture
The architecture of a microservices based set of applications follows mainly the same principles. You need a registry for all your services running in multiple instances You need some kind of authentication / authorization mechanism. Best is to have a…
Using Netflix Eureka with Spring Cloud
In the world of microservices it becomes more and more important to easily find / locate services. They can run anywhere in the cloud, even and often multiple times (multiple instances per service). Fortunately Netflix did open source some of…