SpringMVC解决后台传数据到前台中文乱码问题
程序员文章站
2022-04-03 08:59:17
...
方法一,在RequestMapping中添加
或者
方法二,在spring-mvc.xml中添加:
<!-- 处理请求返回json字符串的中文乱码问题 -->
@RequestMapping(value="/detail",produces = "text/plain;charset=utf-8")
或者
@RequestMapping(value = "/detail", produces = "application/json; charset=utf-8")
方法二,在spring-mvc.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>