标签:
<!-- UTF8解决乱码问题 -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
sping-mvc.xml 中增加上面的代码,放到mvc:annotation-driven 节点上面,问题解决!
@ResponseBody 返回中文乱码问题解决 spingmvc
标签:
原文地址:http://www.cnblogs.com/hoge/p/5690572.html