RESTfu­­l Jav­a­ wit­h ­JAX­-­­RS 2.­0­ (Second Edition)

Developing a JAX-RS RESTful Service

Let’s start by implementing one of the resources of the order entry system we defined in Chapter 2. Specifically, we’ll define a JAX-RS service that allows us to read, create, and update Customers. To do this, we will need to implement two Java classes. One class will be used to represent actual Customers. The other will be our JAX-RS service.

Customer: The Data Class

First, we will need a Java class to represent customers in our system. We will name this class Customer. Customer is a simple Java class that defines eight properties: id, firstName, lastName, street, city, state, zip, and country. Properties are attributes that can be accessed via the class’s fields or through public set and get methods. A Java class that follows this pattern is also called a Java bean:

package com.restfully.shop.domain;

public class Customer {
   private int id;
   private String firstName;
   private String lastName;
   private String street;
   private String city;
   private String state;
   private String zip;
   private String country;

   public int getId() { return id; }
   public void setId(int id) { this.id = id; }

   public String getFirstName() { return firstName; }
   public void setFirstName(String firstName) {
                  this.firstName = firstName; }

   public String getLastName() { return lastName; }
   public void setLastName(String lastName) {
                        this.lastName = lastName; }

   public String getStreet() { return street; }
   public void setStreet(String street) { this.street = street; }

   public String getCity() { return city; }
   public void setCity(String city) { this.city = city;  }

   public String getState() { return state; }
   public void setState(String state) { this.state = state; }

   public String getZip() { return zip; }
   public void setZip(String zip) { this.zip = zip; }

   public String getCountry() { return country; }
   public void setCountry(String country) { this.country = country; }
}

In an Enterprise Java application, the Customer class would usually be a Java Persistence API (JPA) Entity bean and would be used to interact with a relational database. It could also be annotated with JAXB annotations that allow you to map a Java class directly to XML. To keep our example simple, Customer will be just a plain Java object and stored in memory. In Chapter 6, I’ll show how you can use JAXB with JAX-RS to make translating between your customer’s data format (XML) and your Customer objects easier. Chapter 14 will show you how JAX-RS works in the context of a Java EE (Enterprise Edition) application and things like JPA.

CustomerResource: Our JAX-RS Service

Now that we have defined a domain object that will represent our customers at runtime, we need to implement our JAX-RS service so that remote clients can interact with our customer database. A JAX-RS service is a Java class that uses JAX-RS annotations to bind and map specific incoming HTTP requests to Java methods that can service these requests. While JAX-RS can integrate with popular component models like Enterprise JavaBeans (EJB), Web Beans, JBoss Seam, and Spring, it does define its own lightweight model.

In vanilla JAX-RS, services can either be singletons or per-request objects. A singleton means that one and only one Java object services HTTP requests. Per-request means that a Java object is created to process each incoming request and is thrown away at the end of that request. Per-request also implies statelessness, as no service state is held between requests.

For our example, we will write a CustomerResource class to implement our JAX-RS service and assume it will be a singleton. In this example, we need CustomerResource to be a singleton because it is going to hold state. It is going to keep a map of Customer objects in memory that our remote clients can access. In a real system, CustomerResource would probably interact with a database to retrieve and store customers and wouldn’t need to hold state between requests. In this database scenario, we could make CustomerResource per-request and thus stateless. Let’s start by looking at the first few lines of our class to see how to start writing a JAX-RS service:

package com.restfully.shop.services;

import ...;

@Path("/customers")
public class CustomerResource {

   private Map<Integer, Customer> customerDB =
                            new ConcurrentHashMap<Integer, Customer>();
   private AtomicInteger idCounter = new AtomicInteger();

As you can see, CustomerResource is a plain Java class and doesn’t implement any particular JAX-RS interface. The @javax.ws.rs.Path annotation placed on the CustomerResource class designates the class as a JAX-RS service. Java classes that you want to be recognized as JAX-RS services must have this annotation. Also notice that the @Path annotation has the value of /customers. This value represents the relative root URI of our customer service. If the absolute base URI of our server is http://shop.restfully.com, methods exposed by our CustomerResource class would be available under http://shop.restfully.com/customers.

In our class, we define a simple map in the customerDB field that will store created Customer objects in memory. We use a java.util.concurrent.ConcurrentHashMap for customerDB because CustomerResource is a singleton and will have concurrent requests accessing the map. Using a java.util.HashMap would trigger concurrent access exceptions in a multithreaded environment. Using a java.util.Hashtable creates a synchronization bottleneck. ConcurrentHashMap is our best bet. The idCounter field will be used to generate IDs for newly created Customer objects. For concurrency reasons, we use a java.util.concurrent.atomic.AtomicInteger, as we want to always have a unique number generated. Of course, these two lines of code have nothing to do with JAX-RS and are solely artifacts required by our simple example.

Creating customers

Let’s now take a look at how to create customers in our CustomerResource class:

   @POST
   @Consumes("application/xml")
   public Response createCustomer(InputStream is) {
      Customer customer = readCustomer(is);
      customer.setId(idCounter.incrementAndGet());
      customerDB.put(customer.getId(), customer);
      System.out.println("Created customer " + customer.getId());
      return Response.created(URI.create("/customers/"
                                   + customer.getId())).build();
   }

We will implement customer creation using the same model as that used in Chapter 2. An HTTP POST request sends an XML document representing the customer we want to create. The createCustomer() method receives the request, parses the document, creates a Customer object from the document, and adds it to our customerDB map. The createCustomer() method returns a response code of 201, “Created,” along with a Location header pointing to the absolute URI of the customer we just created. So how does the createCustomer() method do all this? Let’s examine further.

To bind HTTP POST requests to the createCustomer() method, we annotate it with the @javax.ws.rs.POST annotation. The @Path annotation we put on the CustomerResource class, combined with this @POST annotation, binds all POST requests going to the relative URI /customers to the Java method createCustomer().

The @javax.ws.rs.Consumes annotation applied to createCustomer() specifies which media type the method is expecting in the message body of the HTTP input request. If the client POSTs a media type other than XML, an error code is sent back to the client.

The createCustomer() method takes one java.io.InputStream parameter. In JAX-RS, any non-JAX-RS-annotated parameter is considered to be a representation of the HTTP input request’s message body. In this case, we want access to the method body in its most basic form, an InputStream.

Only one Java method parameter can represent the HTTP message body. This means any other parameters must be annotated with one of the JAX-RS annotations discussed in Chapter 5.

The implementation of the method reads and transforms the POSTed XML into a Customer object and stores it in the customerDB map. The method returns a complex response to the client using the javax.ws.rs.core.Response class. The static Response.created() method creates a Response object that contains an HTTP status code of 201, “Created.” It also adds a Location header to the HTTP response with the value of something like http://shop.restfully.com/customers/333, depending on the base URI of the server and the generated ID of the Customer object (333 in this example).

Retrieving customers

   @GET
   @Path("{id}")
   @Produces("application/xml")
   public StreamingOutput getCustomer(@PathParam("id") int id) {
      final Customer customer = customerDB.get(id);
      if (customer == null) {
         throw new WebApplicationException(Response.Status.NOT_FOUND);
      }
      return new StreamingOutput() {
         public void write(OutputStream outputStream)
                       throws IOException, WebApplicationException {
            outputCustomer(outputStream, customer);
         }
      };
   }

We annotate the getCustomer() method with the @javax.ws.rs.GET annotation to bind HTTP GET operations to this Java method.

We also annotate getCustomer() with the @javax.ws.rs.Produces annotation. This annotation tells JAX-RS which HTTP Content-Type the GET response will be. In this case, it is application/xml.

In the implementation of the method, we use the id parameter to query for a Customer object in the customerDB map. If this customer does not exist, we throw the javax.ws.rs.WebApplicationException. This exception will set the HTTP response code to 404, “Not Found,” meaning that the customer resource does not exist. We’ll discuss more about exception handling in Chapter 7, so I won’t go into more detail about the WebApplicationException here.

We will write the response manually to the client through a java.io.OutputStream. In JAX-RS, when you want to do streaming manually, you must implement and return an instance of the javax.ws.rs.core.StreamingOutput interface from your JAX-RS method. StreamingOutput is a callback interface with one callback method, write():

package javax.ws.rs.core;

public interface StreamingOutput {
   public void write(OutputStream os) throws IOException,
                                             WebApplicationException;
}

In the last line of our getCustomer() method, we implement and return an inner class implementation of StreamingOutput. Within the write() method of this inner class, we delegate back to a utility method called outputCustomer() that exists in our CustomerResource class. When the JAX-RS provider is ready to send an HTTP response body back over the network to the client, it will call back to the write() method we implemented to output the XML representation of our Customer object.

In general, you will not use the StreamingOutput interface to output responses. In Chapter 6, you will see that JAX-RS has a bunch of nice content handlers that can automatically convert Java objects straight into the data format you are sending across the wire. I didn’t want to introduce too many new concepts in the first introductory chapter, so the example only does simple streaming.

Updating a customer

The last RESTful operation we have to implement is updating customers. In Chapter 2, we used PUT /customers/{id}, while passing along an updated XML representation of the customer. This is implemented in the updateCustomer() method of our CustomerResource class:

   @PUT
   @Path("{id}")
   @Consumes("application/xml")
   public void updateCustomer(@PathParam("id") int id,
                               InputStream is) {
      Customer update = readCustomer(is);
      Customer current = customerDB.get(id);
      if (current == null)
        throw new WebApplicationException(Response.Status.NOT_FOUND);

      current.setFirstName(update.getFirstName());
      current.setLastName(update.getLastName());
      current.setStreet(update.getStreet());
      current.setState(update.getState());
      current.setZip(update.getZip());
      current.setCountry(update.getCountry());
   }

We annotate the updateCustomer() method with @javax.ws.rs.PUT to bind HTTP PUT requests to this method. Like our getCustomer() method, updateCustomer() is annotated with an additional @Path annotation so that we can match /customers/{id} URIs.

The updateCustomer() method takes two parameters. The first is an id parameter that represents the Customer object we are updating. Like getCustomer(), we use the @PathParam annotation to extract the ID from the incoming request URI. The second parameter is an InputStream that will allow us to read in the XML document that was sent with the PUT request. Like createCustomer(), a parameter that is not annotated with a JAX-RS annotation is considered a representation of the body of the incoming message.

In the first part of the method implementation, we read in the XML document and create a Customer object out of it. The method then tries to find an existing Customer object in the customerDB map. If it doesn’t exist, we throw a WebApplicationException that will send a 404, “Not Found,” response code back to the client. If the Customer object does exist, we update our existing Customer object with new updated values.

Utility methods

The final thing we have to implement is the utility methods that were used in createCustomer(), getCustomer(), and updateCustomer() to transform Customer objects to and from XML. The outputCustomer() method takes a Customer object and writes it as XML to the response’s OutputStream:

   protected void outputCustomer(OutputStream os, Customer cust)
                                                     throws IOException {
      PrintStream writer = new PrintStream(os);
      writer.println("<customer id=\"" + cust.getId() + "\">");
      writer.println("   <first-name>" + cust.getFirstName()
                      + "</first-name>");
      writer.println("   <last-name>" + cust.getLastName()
                      + "</last-name>");
      writer.println("   <street>" + cust.getStreet() + "</street>");
      writer.println("   <city>" + cust.getCity() + "</city>");
      writer.println("   <state>" + cust.getState() + "</state>");
      writer.println("   <zip>" + cust.getZip() + "</zip>");
      writer.println("   <country>" + cust.getCountry() + "</country>");
      writer.println("</customer>");
   }

As you can see, this is a pretty straightforward method. Through string manipulations, it does a brute-force conversion of the Customer object to XML text.

The next method is readCustomer(). The method is responsible for reading XML text from an InputStream and creating a Customer object:

   protected Customer readCustomer(InputStream is) {
      try {
         DocumentBuilder builder =
            DocumentBuilderFactory.newInstance().newDocumentBuilder();
         Document doc = builder.parse(is);
         Element root = doc.getDocumentElement();

Unlike outputCustomer(), we don’t manually parse the InputStream. The JDK has a built-in XML parser, so we do not need to write it ourselves or download a third-party library to do it. The readCustomer() method starts off by parsing the InputStream and creating a Java object model that represents the XML document. The rest of the readCustomer() method moves data from the XML model into a newly created Customer object:

         Customer cust = new Customer();
         if (root.getAttribute("id") != null
                && !root.getAttribute("id").trim().equals("")) {
            cust.setId(Integer.valueOf(root.getAttribute("id")));
         }
         NodeList nodes = root.getChildNodes();
         for (int i = 0; i < nodes.getLength(); i++) {
            Element element = (Element) nodes.item(i);
            if (element.getTagName().equals("first-name")) {
               cust.setFirstName(element.getTextContent());
            }
            else if (element.getTagName().equals("last-name")) {
               cust.setLastName(element.getTextContent());
            }
            else if (element.getTagName().equals("street")) {
               cust.setStreet(element.getTextContent());
            }
            else if (element.getTagName().equals("city")) {
               cust.setCity(element.getTextContent());
            }
            else if (element.getTagName().equals("state")) {
               cust.setState(element.getTextContent());
            }
            else if (element.getTagName().equals("zip")) {
               cust.setZip(element.getTextContent());
            }
            else if (element.getTagName().equals("country")) {
               cust.setCountry(element.getTextContent());
            }
         }
         return cust;
      }
      catch (Exception e) {
         throw new WebApplicationException(e,
                       Response.Status.BAD_REQUEST);
      }
   }
}

I’ll admit, this example was a bit contrived. In a real system, we would not manually output XML or write all this boilerplate code to read in an XML document and convert it to a business object, but I don’t want to distract you from learning JAX-RS basics by introducing another API. In Chapter 6, I will show how you can use JAXB to map your Customer object to XML and have JAX-RS automatically transform your HTTP message body to and from XML.

JAX-RS and Java Interfaces

In our example so far, we’ve applied JAX-RS annotations directly on the Java class that implements our service. In JAX-RS, you are also allowed to define a Java interface that contains all your JAX-RS annotation metadata instead of applying all your annotations to your implementation class.

Interfaces are a great way to scope out how you want to model your services. With an interface, you can write something that defines what your RESTful API will look like along with what Java methods they will map to before you write a single line of business logic. Also, many developers like to use this approach so that their business logic isn’t “polluted” with so many annotations. They think the code is more readable if it has fewer annotations. Finally, sometimes you do have the case where the same business logic must be exposed not only RESTfully, but also through SOAP and JAX-WS. In this case, your business logic would look more like an explosion of annotations than actual code. Interfaces are a great way to isolate all this metadata into one logical and readable construct.

Let’s transform our customer resource example into something that is interface based:

package com.restfully.shop.services;

import ...;

@Path("/customers")
public interface CustomerResource {

   @POST
   @Consumes("application/xml")
   public Response createCustomer(InputStream is);

   @GET
   @Path("{id}")
   @Produces("application/xml")
   public StreamingOutput getCustomer(@PathParam("id") int id);

   @PUT
   @Path("{id}")
   @Consumes("application/xml")
   public void updateCustomer(@PathParam("id") int id, InputStream is);
}

Here, our CustomerResource is defined as an interface and all the JAX-RS annotations are applied to methods within that interface. We can then define a class that implements this interface:

package com.restfully.shop.services;

import ...;

public class CustomerResourceService implements CustomerResource {

   public Response createCustomer(InputStream is) {
      ... the implementation ...
   }

   public StreamingOutput getCustomer(int id)
      ... the implementation ...
   }

   public void updateCustomer(int id, InputStream is) {
      ... the implementation ...
}

As you can see, no JAX-RS annotations are needed within the implementing class. All our metadata is confined to the CustomerResource interface.

If you need to, you can override the metadata defined in your interfaces by reapplying annotations within your implementation class. For example, maybe we want to enforce a specific character set for POST XML:

public class CustomerResourceService implements CustomerResource {

   @POST
   @Consumes("application/xml;charset=utf-8")
   public Response createCustomer(InputStream is) {
      ... the implementation ...
   }

In this example, we are overriding the metadata defined in an interface for one specific method. When overriding metadata for a method, you must respecify all the annotation metadata for that method even if you are changing only one small thing.

Overall, I do not recommend that you do this sort of thing. The whole point of using an interface to apply your JAX-RS metadata is to isolate the information and define it in one place. If your annotations are scattered about between your implementation class and interface, your code becomes a lot harder to read and understand.

Inheritance

The JAX-RS specification also allows you to define class and interface hierarchies if you so desire. For example, let’s say we wanted to make our outputCustomer() and readCustomer() methods abstract so that different implementations could transform XML how they wanted:

package com.restfully.shop.services;

import ...;

public abstract class AbstractCustomerResource {

   @POST
   @Consumes("application/xml")
   public Response createCustomer(InputStream is) {
     ... complete implementation ...
   }

   @GET
   @Path("{id}")
   @Produces("application/xml")
   public StreamingOutput getCustomer(@PathParam("id") int id) {
      ... complete implementation
   }
   @PUT
   @Path("{id}")
   @Consumes("application/xml")
   public void updateCustomer(@PathParam("id") int id,
                               InputStream is) {
      ... complete implementation ...
   }

   abstract protected void outputCustomer(OutputStream os,
                                    Customer cust) throws IOException;

   abstract protected Customer readCustomer(InputStream is);

}

You could then extend this abstract class and define the outputCustomer() and readCustomer() methods:

package com.restfully.shop.services;

import ...;

@Path("/customers")
public class CustomerResource extends AbstractCustomerResource {

   protected void outputCustomer(OutputStream os, Customer cust)
                                                  throws IOException {
      ... the implementation ...
   }

   protected Customer readCustomer(InputStream is) {
      ... the implementation ...
   }

The only caveat with this approach is that the concrete subclass must annotate itself with the @Path annotation to identify it as a service class to the JAX-RS provider.