标签:mvc bean message 中文乱码 mes class 乱码 string iat
在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>
标签:mvc bean message 中文乱码 mes class 乱码 string iat
原文地址:https://www.cnblogs.com/pengsay/p/14404022.html