首页 > 编程语言 > 详细

springMvc解决json中文乱码

时间:2015-09-20 02:05:26      阅读:314      评论:0      收藏:0      [点我收藏+]

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/

springMvc解决json中文乱码

原文:http://fanshuyao.iteye.com/blog/2244671

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!