Building a RESTful Web Service with Spring 3.1 and Java based Configuration, part 2

This is the second of a series of articles about setting up a RESTful web service using Spring 3.1 with Java based configuration. This article will focus on setting up REST in Spring, the Controller and HTTP response codes, configuration of payload marshalling and content negotiation. The REST with Spring series:

Understanding REST in Spring

The Spring framework supports 2 ways of creating RESTful services:

  • using MVC with ModelAndView
  • using HTTP message converters

The ModelAndView approach is older and much better documented, but also more verbose and configuration heavy. It tries to shoehorn the REST paradigm into the old model, which is not without problems. The Spring team understood this and provided first-class REST support starting with Spring 3.0.

The new approach, based on HttpMessageConverter and annotations, is much more lightweight and easy to implement. Configuration is minimal and it provides sensible defaults for what you would expect from a RESTful service. It is however newer and a a bit on the light side concerning documentation; what’s more, the Spring reference doesn’t go out of it’s way to make the distinction and the tradeoffs between the two approaches as clear as they should be. Nevertheless, this is the way RESTful services should be build after Spring 3.0.

The Java configuration

The new @EnableWebMvc annotation does a number of useful things – specifically, in the case of REST, it detect the existence of Jackson and JAXB 2 on the classpath and automatically creates and registers default JSON and XML converters. The functionality of the annotation is equivalent to the XML version:

<mvc:annotation-driven />

This is a shortcut, and though it may be useful in many situations, it’s not perfect. When more complex configuration is needed, remove the annotation and extend WebMvcConfigurationSupport directly.

Testing the Spring context

Starting with Spring 3.1 M2, we get first-class testing support for @Configuration classes:

The Java configuration classes are simply specified with the @ContextConfiguration annotation and the new AnnotationConfigContextLoader loads the bean definitions from the @Configuration classes.

Notice that the WebConfig configuration class was not included in the test because it needs to run in a servlet context, which is not provided.

The Controller

The @Controller is the central artifact in the entire Web Tier of the RESTful API. For the purpose of this post, the controller is modeling a simple REST resource – Foo:

The Controller implementation is non-public – this is because there is no need for it to be. Usually the controller is the last in the chain of dependencies – it receives HTTP requests from the Spring front controller (the DispathcerServlet) and simply delegate them forward to a service layer. If there is no use case where the controller has to be injected or manipulated through a direct reference, then I prefer not to declare it as public.

The request mappings are straightforward – as with any Spring controller, the actual value of the mapping as well as the HTTP method are used to determine the target method for the request. @RequestBody will bind the parameters of the method to the body of the HTTP request, whereas @ResponseBody does the same for the response and return type. They also ensure that the resource will be marshalled and unmarshalled using the correct HTTP converter. Content negotiation will take place to choose which one of the active converters will be used, based mostly on the Accept header, although other HTTP headers may be used to determine the representation as well.

Mapping the HTTP response codes

The status codes of the HTTP response are one of the most important parts of the REST service, and the subject can quickly become very complex. Getting these right can be what makes or breaks the service.

Unmapped requests

If Spring MVC receives a request which doesn’t have a mapping, it considers the request not to be allowed and returns a 405 METHOD NOT ALLOWED back to the client. It is also good practice to include the Allow HTTP header when returning a 405 to the client, in order to specify which operations are allowed. This is the standard behavior of Spring MVC and does not require any additional configuration.

Valid, mapped requests

For any request that does have a mapping, Spring MVC considers the request valid and responds with 200 OK if no other status code is specified otherwise. It is because of this that controller declares different @ResponseStatus for the create, update and delete actions but not for get, which should indeed return the default 200 OK.

Client error

In case of a client error, custom exceptions are defined and mapped to the appropriate error codes. Simply throwing these exceptions from any of the layers of the web tier will ensure Spring maps the corresponding status code on the HTTP response.

These exceptions are part of the REST API and, as such, should only be used in the appropriate layers corresponding to REST; if for instance a DAO/DAL layer exist, it should not use the exceptions directly. Note also that these are not checked exceptions but runtime exceptions – in line with Spring practices and idioms.

Using @ExceptionHandler

Another option to map custom exceptions on specific status codes is to use the @ExceptionHandler annotation in the controller. The problem with that approach is that the annotation only applies to the controller in which it is defined, not to the entire Spring Container, which means that it needs to be declared in each controller individually. This quickly becomes cumbersome, especially in more complex applications which many controllers. There are a few JIRA issues opened with Spring at this time to handle this and other related limitations: SPR-8124, SPR-7278, SPR-8406.

Additional Maven dependencies

In addition to the pom.xml from the first post, two dependencies need to be added:

These are the libraries used to convert the representation of the REST resource to either JSON or XML.

Conclusion

This post covered the configuration and implementation of a RESTful service using Spring 3.1 and Java based configuration, discussing HTTP response codes, basic content negotiation and marshaling. In the next articles of the series I will focus on discoverability of the API, advanced content negotiation and working with additional representations of a resource. In the meantime, check out the github project.

If you read this far, you should follow me on twitter here.

, , , ,

  • http://twitter.com/starbuxman Josh Long

    Nice post! I love the attention to details (for example, mentioning @ExceptionHandler and the relevant JIRAs). Keep up the great work and I definitely look forward to seeing your future posts and adventures with Spring (and Spring MVC).

  • wojtek

    What do I have to change to be able to GET all Foo’s using application/xml media type? Now i am getting 406 error. Only JSON works fine

    • Anonymous

      I will look into it. Also, you can always open up an issue in github. Thanks.

      • Voodoorider

        Done.

  • Jack

    This is maybe the best run though of spring 3.1 (and webservices) i have yet seen. Indeed, the level of detail is great. Keep it up1

  • Rodrigo Reyes

    Is there anyway to map DAO level exceptions to REST status code without using a controller specific @ExceptionHandler? I would like to configure that system wide.

    • Anonymous

      See the existing custom exceptions in the project (in github – link is at the end of the article); these are system wide and they map status codes to exceptions.
      Eugen.

      • Rodrigo Reyes

        Yes, I saw them. Problem is, I want to map Spring exceptions (Ex. JpaObjectRetrievalFailureException) to status codes. Anyway to do that?

        PS: Excelent articles :) Thanks for the contribution.

        • Anonymous

          No way to map already existing exceptions to HTTP status codes as far as I am aware of. Also, the standard way to achieve what you’re trying to do (and a common pattern in Spring) is exception translation – catch the exceptions you know the underlying code throws and you wrap and re throw them in your own exceptions.
          Hope this helps.
          Eugen.

          • Rodrigo Reyes

            Thanks, Eugen. I hoped there was some declarative way of handling this system wide since it needs to be done in several places. Thanks anyway.

  • brian

    Question on the @ResponseStatus – I tried adding a reason to your BadRequestException (see my change below). I wanted to see the reason propagated to the client Response, but I don’t see it there. I set a breakpoint in your FooRESTIntegrationTest.java at the method givenResourceDoesNotExist_whenResourceIsDeleted_then404IsReceived on the assert and it just shows the response.statusLine=”HTTP/1.1 404 Not Found” where I would expect it to be “HTTP/1.2 404 BadRequestExceptionTest”).

    @ResponseStatus( value = HttpStatus.BAD_REQUEST, reason=”BadRequestExceptionTest”)
    public final class BadRequestException extends RuntimeException{
    //
    }

    • brian

      Apologies, I was testing with your older version of the project. I loaded the new version and also can reproduce same issue as follows: I modified your
      ConflictException as follows, just the one line to add reason:
      @ResponseStatus(value = HttpStatus.CONFLICT, reason = “ConflictExceptionReason”)

      And then set breakpoint in your UserLogicRESTIntegrationTest.java at method whenUserIsCreatedWithNewRole_then409IsReceived at the response and don’t see the reason changed. It is “HTTP/1.1 409 Conflict” and would expect “HTTP/1.1 409 ConflictExceptionReason”.

      Thanks for any reply if you have the time, Otherwise I understand (it is a small issue, but I’m thinking it may just be a configuration).

      brian

      • Anonymous

        Thanks for the detailed feedback. Please go ahead and open up a new issue in github and I will deal with it as soon as possible.
        Thanks.
        Eugen.

  • Knesek

    Thanks for great post. For some reason, if methods are marked as final, Spring injection doesn’t seem to work for controllers in my configuration (injected beans are null in controller). Couldn’t figure out why. Just wanted to point that out if someone stumbles on the same problem.