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

I have a Spring MVC Controller that returns a JSON String and I would like to set the mimetype to application/json. How can I do that?

@RequestMapping(method=RequestMethod.GET, value="foo/bar")
@ResponseBody
public String fooBar(){
    return myService.getJson();
}

The business objects are already available as JSON strings, so using MappingJacksonJsonView is not the solution for me. @ResponseBody is perfect, but how can I set the mimetype?

share|improve this question
using spring 3.2 and its new testing feature ... is there no solution without using ResponseEntity ? – NimChimpsky Dec 22 '12 at 16:57

7 Answers

Use ResponseEntity instead of ResponseBody. This way you have access to the response headers and you can set the appropiate content type. According to the spring doc (http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-ann-httpentity):

The HttpEntity is similar to @RequestBody and @ResponseBody. Besides getting access to the request and response body, HttpEntity (and the response-specific subclass ResponseEntity) also allows access to the request and response headers

The code will look like:

@RequestMapping(method=RequestMethod.GET, value="/fooBar")
    public ResponseEntity<String> fooBar2() {
      String json = "jsonResponse";
      HttpHeaders responseHeaders = new HttpHeaders();
      responseHeaders.setContentType(MediaType.APPLICATION_JSON);
      return new ResponseEntity<String>(json, responseHeaders, HttpStatus.CREATED);
    }
share|improve this answer
That's the nicest one so far, thanks (+1) – Sean Patrick Floyd Dec 20 '10 at 7:54
   
hi, I want to return a serialized object but using your method I have a problem, it doesn't compile because it says: HttpHeaders is abstract can not be instantiated.... can you explain me as well how you woud do this having to return the serialization of an object? now it works fine if not using ResponseEntity – Lince81 Mar 30 '11 at 13:31
@Lince81 org.springframework.http.HttpHeaders is not an abstract class (static.springsource.org/spring/docs/3.0.x/javadoc-api/org/…). See if your import is correct and your libraries are updated. – Javier Ferrero Mar 30 '11 at 17:15
@Lince81 the point of the example is returning an already serialized object as a String while setting a different Content-Type. If you want Spring to serialize an Object (as XML, JSON, etc) use @ResponseBody and configure the appropiate MessageConverters (see link in the answer) – Javier Ferrero Mar 30 '11 at 17:18
1  
If I could vote for this multiple times, I would! – Brian M. Carr Apr 17 '12 at 19:21
show 2 more comments

I don't think this is possible. There appears to be an open Jira for it:

SPR-6702: Explicitly set response Content-Type in @ResponseBody

share|improve this answer
Thanks. Seems like nobody wants it. I voted for it now. – Sean Patrick Floyd Dec 17 '10 at 15:00
2  
It's fixed in Spring 3.1 - use @RequestMapping(method = RequestMethod.GET, value = "foo/bar", produces = "application/json"), see SPR-7353 – Xaerxess Oct 2 '12 at 10:41

You may not be able to do it with @ResponseBody, but something like this should work:

package xxx;

import java.io.ByteArrayOutputStream;
import java.io.IOException;

import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class FooBar {
  @RequestMapping(value="foo/bar", method = RequestMethod.GET)
  public void fooBar(HttpServletResponse response) throws IOException {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    out.write(myService.getJson().getBytes());
    response.setContentType("application/json");
    response.setContentLength(out.size());
    response.getOutputStream().write(out.toByteArray());
    response.getOutputStream().flush();
  }
}
share|improve this answer
would he need to write to the response, or just setting the header would do? – Bozho Dec 17 '10 at 21:16

Register org.springframework.http.converter.json.MappingJacksonHttpMessageConverter as the message converter and return the object directly from the method.

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
  <property name="webBindingInitializer">
    <bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer"/>
  </property>
  <property name="messageConverters">
    <list>
      <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
    </list>
  </property>
</bean>

and the controller:

@RequestMapping(method=RequestMethod.GET, value="foo/bar")
public @ResponseBody Object fooBar(){
    return myService.getActualObject();
}
share|improve this answer
Yes, probably a best practice, but as I wrote my objects are already JSON strings and I just want to write them out with the correct mime type. – Sean Patrick Floyd Dec 18 '10 at 22:30
What are the maven dependencies for the beans you are referencing? – Ryan Montgomery Apr 29 '11 at 21:55
org/springframework/spring-webmvc should cover it – OrangeDog May 3 '11 at 21:39

I don't think you can, apart from response.setContentType(..)

share|improve this answer
Which means I must define a parameter of type HttpServletResponse? – Sean Patrick Floyd Dec 17 '10 at 14:59
1  
yes. (15chars). – Bozho Dec 17 '10 at 15:04
Tried that but it didn't work (mime type was still text/html) – Sean Patrick Floyd Dec 18 '10 at 23:05
@Sean Patrick Floyd strange. What is the "Accept" header of your request? – Bozho Dec 19 '10 at 7:33
no way to check today, tell you tomorrow – Sean Patrick Floyd Dec 19 '10 at 10:43

I would consider to refactor the service to return your domain object rather than JSON strings and let Spring handle the serialization (via the MappingJacksonHttpMessageConverter as you write). As of Spring 3.1, the implementation looks quite neat:

@RequestMapping(produces = MediaType.APPLICATION_JSON_VALUE, 
    method = RequestMethod.GET
    value = "/foo/bar")
@ResponseBody
public Bar fooBar(){
    return myService.getBar();
}

Comments:

First, the <mvc:annotation-driven /> or the @EnableWebMvc must be added to your application config.

Next, the produces attribute of the @RequestMapping annotation is used to specify the content type of the response. Consequently, it should be set to MediaType.APPLICATION_JSON_VALUE (or "application/json").

Lastly, Jackson must be added so that any serialization and de-serialization between Java and JSON will be handled automatically by Spring (the Jackson dependency is detected by Spring and the MappingJacksonHttpMessageConverter will be under the hood).

share|improve this answer
Worked great. Thanks! – SBerg413 Jan 30 at 15:12
up vote 0 down vote accepted

Here's my own solution:

public class JsonView extends AbstractView{

    private static final String CONTENT_TYPE = "Content-type";
    private final String json;

    public JsonView(final String json){
        this.json = json;
    }

    @Override
    protected void renderMergedOutputModel(final Map<String, Object> model,
        final HttpServletRequest request,
        final HttpServletResponse response){
        response.setHeader(CONTENT_TYPE, MediaType.APPLICATION_JSON.toString());
        PrintWriter writer = null;
        try{
            writer = response.getWriter();
            CharStreams.copy(CharStreams.newReaderSupplier(json), writer);
        } catch(final IOException e){
            throw new IllegalStateException(e);
        } finally{
            Closeables.closeQuietly(writer);
        }
    }

}

Controller:

@RequestMapping(method=RequestMethod.GET, value="foo/bar")
public View fooBar(){
    return new JsonView(myService.getJson());
}
share|improve this answer
1  
How can this be the correct answer? This solution has nothing to do with @ResponseBody, which was your question. Appart of this, using a view is totally unnescessary. – Javier Ferrero Dec 29 '10 at 0:01
@javierfp Well since I asked the question I guess I can judge best what's the correct answer for my situation. And I realized that @ResponseBody apparently just doesn't cut it for me. I have controllers with 10+ such methods, and so I need a one-liner version to make the source somewhat maintainable. And yes, I could have refactored your version into a one-liner, but I chose a different way. Maybe not the best way, but a way that works well for me. No need for you to sulk. – Sean Patrick Floyd Dec 29 '10 at 9:34

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.