标签:default org htm support 乱码问题 port tpm 配置文件 work
在MVC配置文件中配置
<mvc:annotation-driven>
<!-- 解决@ResponseBody返回中文乱码 -->
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes" value="text/html;charset=UTF-8" />
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
Spring MVC中@ResponseBody 返回中文字符串乱码问题
标签:default org htm support 乱码问题 port tpm 配置文件 work
原文地址:http://www.cnblogs.com/fhbdd/p/7199685.html