Spring MVC 4:" application / json"内容类型未正确设置

时间:2015-05-30 16:53:27

标签: java json spring spring-mvc content-type

我有一个使用以下注释映射的控制器:

@RequestMapping(value = "/json", method = RequestMethod.GET, produces = "application/json")
@ResponseBody
public String bar() {
    return "{\"test\": \"jsonResponseExample\"}";
}

我返回了一个有效的JSON字符串,但是,当我在浏览器中查看Chrome Dev Tools上的响应时,内容类型不是application/json,而只是text/html。为什么没有设置内容类型?

我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app metadata-complete="true" version="3.0"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

    <display-name>Spring MVC Web Application</display-name>

    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- static assets -->
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.js</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.css</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

我的dispatcher-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans     
    http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-4.1.xsd">


    <context:annotation-config />

    <context:component-scan base-package="com.mydomain.controllers" />

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>

使用WildFly 8.1作为我的应用服务器。

6 个答案:

答案 0 :(得分:56)

首先要理解的是

中的RequestMapping#produces()元素
@RequestMapping(value = "/json", method = RequestMethod.GET, produces = "application/json")

仅用于限制请求处理程序的映射。 它什么也没做。

然后,假设您的方法的返回类型为String,并使用@ResponseBody进行注释,则返回值将由StringHttpMessageConverter处理,后者设置Content-type标题到text/plain。如果您想自己返回一个JSON字符串并将标题设置为application/json,请使用返回类型ResponseEntity(删除@ResponseBody)并为其添加适当的标题。

@RequestMapping(value = "/json", method = RequestMethod.GET, produces = "application/json")
public ResponseEntity<String> bar() {
    final HttpHeaders httpHeaders= new HttpHeaders();
    httpHeaders.setContentType(MediaType.APPLICATION_JSON);
    return new ResponseEntity<String>("{\"test\": \"jsonResponseExample\"}", httpHeaders, HttpStatus.OK);
}

请注意,您应该

<mvc:annotation-driven /> 

在servlet上下文配置中,使用最合适的默认值设置MVC配置。

答案 1 :(得分:3)

在控制器的返回类型上使用jackson库和@ResponseBody注释。

如果您希望返回表示为JSon的POJO,则此方法有效。如果您想要返回String而不是POJO作为JSon,请参阅Sotirious回答。

答案 2 :(得分:2)

正如其他人评论的那样,因为你的方法的返回类型是String Spring不会觉得需要对结果做任何事情。

如果您更改签名以便返回类型需要编组,那应该会有所帮助:

@RequestMapping(value = "/json", method = RequestMethod.GET, produces = "application/json")
@ResponseBody
public Map<String, Object> bar() {
    HashMap<String, Object> map = new HashMap<String, Object>();
    map.put("test", "jsonRestExample");
    return map;
}

答案 3 :(得分:0)

不完全针对此OP,但针对遇到404并且无法将回复content-type设置为"application/json"(任何content-type)的用户。一种可能性是服务器实际响应406但是资源管理器(例如,chrome)将其打印为404.

如果您不自定义邮件转换器,spring将使用AbstractMessageConverterMethodProcessor.java。它会运行:

List<MediaType> requestedMediaTypes = getAcceptableMediaTypes(request);
List<MediaType> producibleMediaTypes = getProducibleMediaTypes(request, valueType, declaredType);

如果它们没有任何重叠(相同的项目),它将抛出HttpMediaTypeNotAcceptableException,最终导致406.无论是ajax,还是GET / POST或表单操作,如果请求uri以.html或任何后缀结尾,requestedMediaTypes将是“text / [that suffix]”,这与producibleMediaTypes冲突,通常是:

"application/json"  
"application/xml"   
"text/xml"          
"application/*+xml" 
"application/json"  
"application/*+json"
"application/json"  
"application/*+json"
"application/xml"   
"text/xml"          
"application/*+xml"
"application/xml"  
"text/xml"         
"application/*+xml"

答案 4 :(得分:-1)

当我升级到Spring 4时,我需要更新jackson依赖项,如下所示:

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-core</artifactId>
        <version>2.5.1</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.5.1</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-annotations</artifactId>
        <version>2.5.1</version>
    </dependency>        

答案 5 :(得分:-1)

我有@Greg post指定的依赖项。我仍然面临这个问题,并且可以通过添加以下额外的jackson依赖来解决它:

<dependency>
    <groupId>com.fasterxml.jackson.dataformat</groupId>
    <artifactId>jackson-dataformat-xml</artifactId>
    <version>2.7.4</version>
</dependency>