springmvc ajax请求中文乱码问题
程序员文章站
2024-01-24 09:08:10
...
#springmvc ajax请求中文乱码问题
最近前端用jquery的get请求向后台请求字符串,字符串中含有中文,到前台显示的时候中文为乱码。
解决方案
- 不是用@ResponseBody注解,直接使用response.getWriter.print()将字符串输出,前台得到的中文是正常的。
- 使用如下代码
@RequestMapping(value="/getContent/{kind}/{id}", produces ="text/html; charset=utf-8")
@ResponseBody
这样返回的数据也是正常的。
- 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-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
下一篇: javascript之回调函数