This chapter introduces basic concepts about JAX-RS and its implementation in Micronaut.
JAX-RS Introduction
Java API for RESTful web services (JAX-RS) is a Java programming language API spec that provides support in creating web services according to the REST architectural pattern. What exactly is JAX-RS? JAX-RS is a POJO-based, annotation-driven framework for building web services that comply with RESTful principles. Imagine writing all the low-level code to parse an HTTP request and the logic just to wire these ...