我正在构建一个简单的SpringMVCwebapp,并在码头上进行开发。我的控制器绑定使用了这个:
@RequestMapping(value = RESTRoutes.CREATE_DOC, method = RequestMethod.POST)
public @ResponseBody String getDoc
从JSONObject返回字符串可以正确解析为ajax响应中的JSON。
但是使用这些相同的控制器,我将我的gradle war部署到tomcat,我的json回来包装为真正的字符串。
所以我更改了我的标题以使用Map,这似乎可以解决码头和tomcat中的问题:
@RequestMapping(value = RESTRoutes.CREATE_DOC, method = RequestMethod.POST)
public @ResponseBody Map<String, String> getDoc
我用这个从字符串转换为地图:
HashMap<String, String> jsonResponse = new HashMap<String, String>();
if(claimFolder.has("error")){
response.setStatus(500);
}else{
jsonResponse = new ObjectMapper().readValue(claimFolder.toString(), HashMap.class);
}
return jsonResponse;
我的问题是为什么这是必要的?
这是我的杰克逊转换器配置:
<bean id="formConverter" class="org.springframework.http.converter.FormHttpMessageConverter" />
<!-- add byte[] converter -->
<bean id="byteArrayConverter" class="org.springframework.http.converter.ByteArrayHttpMessageConverter">
<property name="supportedMediaTypes" value="application/octet-stream" />
</bean>
<!-- add in our JSON message converter -->
<bean id="jsonConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes" value="application/json;charset=UTF-8" />
</bean>
<!-- add in our plain string message converter -->
<bean id="stringHttpMessageConverter" class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes" value="text/plain;charset=UTF-8" />
</bean>
<!-- Expose the authenticated handler to all beans that have been declared via annotation -->
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
</bean>
太长别读:为什么码头和雄猫返回字符串JSON不同?
嗯,Spring内容协商将String对象转换为简单字符串而不将其编组为JSON对象是绝对正常的。为了在JSON对象中序列化javaString对象,您需要先将其包装在某个java类中。例如:
QuestionStatus {
private String status;
public QuestionStatus(String status) {
this.status = status;
}
public getStatus() {
return status;
}
}
因此,您必须在Controller
方法中返回的不是字符串,而是问题状态。