...Service Discovery is one of the key tenets of a microservice-based architecture. Trying to hand-configure each client or some form of convention can be difficult to do and can be brittle. Eureka is the Netflix Service Discovery Server and Client. The server can be configured and deployed to be highly available, with each server replicating state about the registered services to the others.
Go to project's home page here (in french only) : https://rocketmix.github.io
Go to source code and technical documentation here : https://github.com/rocketmix/rocketmix.source
RocketMiX is an open source API platform build on "classic" Spring and Netflix components.
It contains :
* a routing server
* a management server (which embeds a directory of your APIs and a monitoring UI)
* a Spring Boot Starter module (hosted on Maven central)
RocketMiX aims to be a simplified API Plateform. To perform that, we simplified everything and just offered Linux executables instead of complex Java packages: one for the routing server and one for the management server.
...