springMvc解决json中文乱码

springMvc解决json中文乱码

springMvc解决json中文乱码,springMvc中文乱码,spring中文乱码

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

蕃薯耀 2015年9月19日 15:51:38 星期六

http://fanshuyao.iteye.com/

<context:component-scan base-package="com.spring.webService.*"></context:component-scan>

	<mvc:annotation-driven>
<!-- 解决中文乱码 -->
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes" value = "text/plain;charset=UTF-8" />
</bean>
</mvc:message-converters>
</mvc:annotation-driven> <mvc:default-servlet-handler/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="suffix" value=".jsp"></property>
<property name="prefix" value="/WEB-INF/jsp/"></property>
</bean>

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

蕃薯耀 2015年9月19日 15:51:38 星期六

http://fanshuyao.iteye.com/

上一篇:Java实现过滤中文乱码


下一篇:Web---演示servlet技术(servlet生命周期),解决中文乱码问题