Setting Up Your Microservice With Micronaut
Micronaut is a JVM-based framework designed to help developers build building modular, easily testable microservice applications.
It has several tools that are needed to build a microservice application like:
Dependency Injection and Inversion of Control (IoC) Sensible Defaults and Auto-Configuration Configuration and Configuration Sharing Service Discovery HTTP Routing HTTP Client with client-side load-balancing At the same time, it provides:
Fast startup time Reduced memory footprint Minimal use of reflection Minimal use of proxies Easy unit testing It was designed to avoid some downsides of other frameworks used to build microservices.
read more