场景:使用gradle从Spring 4.0.5.RELEASE更新到4.2.2.RELEASE会导致端点返回XML而不是JSON。
我的服务器上有一个端点,它返回一个对象列表。以前,我可以在浏览器中点击此端点,并且由于我的JSONView扩展名,以一种很好的格式查看JSON对象。但是,在升级Spring之后,相同的端点现在会在浏览器中显示XML。但是,当使用js向同一端点发出请求时,我会获得JSON。
在保持4.2.2版本的同时,我是否需要更改以恢复旧行为?
这似乎是源于这个问题,Spring对两个版本之间的变化做出了反应:https://github.com/strongloop/strong-remoting/issues/118。
以下是我的spring-api-servlet.xml
文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<mvc:annotation-driven/>
<context:component-scan base-package="com.XXX.spring" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
<bean id="jacksonMessageConverter"
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"></bean>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="jacksonMessageConverter" />
</list>
</property>
</bean>
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10000000" />
</bean>
答案 0 :(得分:0)
不确定细节,但这可能是内容类型协商的事情。 spring.io/blog/2013/05/11/content-negotiation-using-spring-mvc有一个高级别的描述。在弹簧增量中,spring有时会对消息转换器进行调整或重新排序,这意味着&#34;胜利&#34;如果请求接受标头是宽泛的,则是非特定的。