How to set up JAX-RS Application using annotations only (no web.xml)? How to set up JAX-RS Application using annotations only (no web.xml)? java java

How to set up JAX-RS Application using annotations only (no web.xml)?


** PLEASE READ IF YOU USE TOMCAT OR JETTY! **

The accepted answer does work, but only if the webapp is deployed to an app server like Glassfish or Wildfly, and possibly servlet containers with EE extensions like TomEE. It doesn't work on standard servlet containers like Tomcat, which I'm sure most people looking for a solution here want to use.

If you're using a standard Tomcat install (or some other servlet container), you need to include a REST implementation since Tomcat doesn't come with one. If you're using Maven, add this to the dependencies section:

<dependencies>  <dependency>    <groupId>org.glassfish.jersey.bundles</groupId>    <artifactId>jaxrs-ri</artifactId>    <version>2.13</version>  </dependency>  ...</dependencies>

Then just add an application config class to your project. If you don't have any special configuration needs aside from setting the context path for the rest services, the class can be empty. Once this class is added, you don't need to configure anything in web.xml (or have one at all):

package com.domain.mypackage;import javax.ws.rs.ApplicationPath;import javax.ws.rs.core.Application;@ApplicationPath("rest") // set the path to REST web servicespublic class ApplicationConfig extends Application {}

After this, declaring your web services is straight forward using the standard JAX-RS annotations in your Java classes:

package com.domain.mypackage;import javax.ws.rs.Consumes;import javax.ws.rs.Produces;import javax.ws.rs.GET;import javax.ws.rs.MatrixParam;import javax.ws.rs.Path;// It's good practice to include a version number in the path so you can have// multiple versions deployed at once. That way consumers don't need to upgrade// right away if things are working for them.@Path("calc/1.0")public class CalculatorV1_0 {  @GET  @Consumes("text/plain")  @Produces("text/plain")  @Path("addTwoNumbers")  public String add(@MatrixParam("firstNumber") int n1, @MatrixParam("secondNumber") int n2) {    return String.valueOf(n1 + n2);  }}

This should be all you need. If your Tomcat install is running locally on port 8080 and you deploy your WAR file to the context myContext, going to...

http://localhost:8080/myContext/rest/calc/1.0/addTwoNumbers;firstNumber=2;secondNumber=3

...should produce the expected result (5).


It seems that all I needed to do is this (Servlet 3.0 and above)

import javax.ws.rs.ApplicationPath;import javax.ws.rs.core.Application;@ApplicationPath("/*")public class MyApplication extends Application {    ...}

And no web.xml configuration was apparently needed (tried on Tomcat 7)


Chapter 2 of the JAX-RS: Java™ API for RESTful Web Services specification describes the publication process of a JAX-RS application in Servlet environment (section 2.3.2 Servlet in the specification).

Please note that Servlet 3 environment is recommended only (section 2.3.2 Servlet, page 6):

It is RECOMMENDED that implementations support the Servlet 3 framework pluggability mechanism to enable portability between containers and to avail themselves of container-supplied class scanning facilities.

In short, if you want to use a no-web.xml approach, it's possible with a custom implementation of javax.ws.rs.core.Application that registers RESTful service resources with the javax.ws.rs.ApplicationPath annotation.

@ApplicationPath("/rest")

Although you asked specifically about Jersey you may also like to read the article Implementing RESTful services with JAX-RS and WebSphere 8.5 Liberty Profile in which I described the no-web.xml publication process for WebSphere Liberty Profile (with Apache Wink as the implementation of JAX-RS).