In the previous post, I wrote about the steps I followed when adding support for Swagger and Swagger UI to a RESTful API built using RESTEasy. In this post, I'll walk you through the steps I followed when adding support for Guice (a lightweight dependency injection framework that implements JSR-330)…
RESTEasy
RESTEasy, embedded Jetty, Fat JARs, Swagger and Swagger UI
In the previous post, I wrote about the steps I followed when building a RESTful API using RESTEasy. In this post, I'll walk you through the steps I followed when adding support for Swagger and Swagger UI to a RESTful API built using RESTEasy (packaged in a Fat JAR with…
RESTEasy, embedded Jetty and Fat JARs
In the previous post, I wrote about the steps I followed when getting started with the RESTEasy framework. In this post, I'll walk you through the steps I followed when embedding Jetty and packaging a RESTful API as a fat JAR (a fat JAR or uber-JAR is a JAR file…
Getting started with RESTEasy
The Java API for RESTful web services (JAX-RS) is a Java language specification that simplifies the development and deployment of RESTful web services. RESTEasy is JBoss's implementation of the JAX-RS specification. In this post, I will walk you through the steps I followed when getting started with the RESTEasy framework.…