Abstract
Micronaut is a JVM-based modern full-stack microservice framework. This new framework has been developed by the Grails team with an intention to solve problems which have been identified over the years while building the real-world microservices applications.
One of the most exciting features of Micronaut is its compile-time dependency injection mechanism. Most frameworks use reflection and proxies to perform dependency injection at runtime. Micronaut, however, builds its dependency injection data at compile time. The ...