springmvc返回json字符串中文乱码问题
方式一:如果只是简单的将字符串返回客户端的话,那么就可以这样配置:
/**
* 通过阿里巴巴的fastjson开源工具将对象解析成json格式的对象,然后再返回给客户端浏览器
* 使用JSONArray类中的toJSONString()静态方法
* @return
*/
@RequestMapping(value = "/json", produces = {"text/html;charset=UTF-8;","application/json;"})
@ResponseBody
public String toJson() {
User user = new User();
user.setId(1001);
user.setName("刘诗诗");
user.setAge(18);
System.out.println(user);
return JSONArray.toJSONString(user);
}
方式二:如果遇到复杂对象,则在springmvc.xml配置:
<!-- 处理请求返回json字符串的乱码问题 -->
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>