springmvc ajax请求中文乱码问题

#springmvc ajax请求中文乱码问题

最近前端用jquery的get请求向后台请求字符串,字符串中含有中文,到前台显示的时候中文为乱码。
解决方案
  1. 不是用@ResponseBody注解,直接使用response.getWriter.print()将字符串输出,前台得到的中文是正常的。
  2. 使用如下代码
@RequestMapping(value="/getContent/{kind}/{id}", produces ="text/html; charset=utf-8")
@ResponseBody

这样返回的数据也是正常的。

  1. springmvc可以在springmvc配置文件中配置,避免json中文乱码,但是本次请求返回字符串所以没测试
<mvc:annotation-driven>
     <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=UTF-8value>
                    list>
                property>
            bean>
        mvc:message-converters>
    mvc:annotation-driven>

你可能感兴趣的:(问题总结)