Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing REST web app (Netbean6.9, JAX-RS, Toplink-essential) and trying to return JSON and Http status code.

I have code ready and working just to return JSON when HTTP GET Method is called from client.

Code snippet

 @Path("get/id")
    @GET
    @Produces("application/json")
    public M_機械 getMachineToUpdate(@PathParam("id") String id) {

        //some code to return JSON
        .
        .
        return myJson

But I also want to return HTTP status code (500, 200, 204 etc) along with returning JSON.

I tried using HttpServletResponse object,

response.sendError("error message", 500);

But this made browser to think it's real 500 so output web page was regular Http 500 error page.

What I want to is just to return status code so that my Javascript on client side can handle some logic depending on what HTTP status code is returned. (maybe just to display the error code and message on html page.)

Is it possible to do so? or should HTTP status code not be used for such thing?

share|improve this question

5 Answers

up vote 24 down vote accepted

Here's an example:

@GET
@Path("retrieve/{uuid}")
public Response retrieveSomething(@PathParam("uuid") String uuid) {
    if(uuid == null || uuid.trim().length() == 0) {
        return Response.serverError().entity("UUID cannot be blank").build();
    }
    Entity entity = service.getById(uuid);
    if(entity == null) {
        return Response.status(Response.Status.NOT_FOUND).entity("Entity not found for UUID: " + uuid).build();
    }
    String json = //convert entity to json
    return Response.ok(json, MediaType.APPLICATION_JSON).build();
}

Take a look at the Response class.

Note that you should always specify a content type, especially if you are passing multiple content types, but if every message will be represented as JSON, you can just annotate the method with @Produces("application/json")

share|improve this answer
Thanks for the tip, it works! :D – masato-san Jan 14 '11 at 7:27
It works, but what I don't like about the Response return value is that in my opinion it pollutes your code, specially regarding to any client trying to use it. If you provide an interface returning a Response to a third party, he does not know what type are you really returning. Spring makes it more clear with an annotation, very useful if you always return a status code (i.e. HTTP 204) – Guido García Nov 14 '12 at 16:48
2  
Making that class generic (Response<T>) would be an interesting improvement to jax-rs, to have the advantages of both alternatives. – Guido García Nov 14 '12 at 17:07

The answer by hisdrewness will work, but it modifies the whole approach to letting a provider such as Jackson+JAXB automatically convert your returned object to some output format such as JSON. Inspired by an Apache CFX post (which uses a CFX-specific class) I've found one way to set the response code that should work in any JAX-RS implementation: inject an HttpServletResponse context and manually set the response code. For example, here is how to set the response code to CREATED when appropriate.

@Path("/foos/{fooId}")
@PUT
@Consumes("application/json")
@Produces("application/json")
public Foo setFoo(@PathParam("fooID") final String fooID, final Foo foo, @Context final HttpServletResponse response)
{
  //TODO store foo in persistent storage
  if(itemDidNotExistBefore) //return 201 only if new object; TODO app-specific logic
  {
    response.setStatus(Response.Status.CREATED.getStatusCode());
  }
  return foo;  //TODO get latest foo from storage if needed
}
share|improve this answer
You can actually combine the approaches: annotate the method with @Produces, and don't specify the media type in the final Response.ok, and you'll get your return object correctly JAXB-serialized into the appropriate media type to match the request. (I just tried this with a single method that could return either XML or JSON: the method itself doesn't need to mention either, except in the @Produces annotation.) – Royston Shufflebotham Sep 26 '12 at 21:31
You are right Garret. My example was more of an illustration of the emphasis of providing a content type. Our approaches are similar, but the idea of using a MessageBodyWriter and Provider allows for implicit content negotiation, although it seems your example is missing some code. Here's another answer I provided that illustrates this: stackoverflow.com/questions/5161466/… – hisdrewness Dec 4 '12 at 20:38

JAX-RS has support for standard/custom HTTP codes. See ResponseBuilder and ResponseStatus, for example:

http://jackson.codehaus.org/javadoc/jax-rs/1.0/javax/ws/rs/core/Response.ResponseBuilder.html#status%28javax.ws.rs.core.Response.Status%29

Keep in mind that JSON information is more about the data associated with the resource/application. The HTTP codes are more about the status of the CRUD operation being requested. (at least that is how it's supposed to be in REST-ful systems)

share|improve this answer
Thanks for the tip! – masato-san Jan 14 '11 at 7:27

I'm not using JAX-RS, but I've got a similar scenario where I use:

response.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());
share|improve this answer
Thanks, I'm not sure if setting status would make browser throw error page tho.. – masato-san Jan 14 '11 at 7:29
It does for me using Spring MVC but there is an easy way to find out! – Caps Jan 17 '11 at 1:42

In case you want to change the status code because of an exception, with JAX-RS 2.0 you can implement an ExceptionMapper like this. This handles this kind of exception for the whole app.

@Provider
public class UnauthorizedExceptionMapper implements ExceptionMapper<EJBAccessException> {

    @Override
    public Response toResponse(EJBAccessException exception) {
        return Response.status(Response.Status.UNAUTHORIZED.getStatusCode()).build();
    }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.