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/

猜你喜欢

转载自fanshuyao.iteye.com/blog/2244671
今日推荐