zoukankan      html  css  js  c++  java
  • 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/

  • 相关阅读:
    【Gym
    [matlab工具箱] 曲线拟合Curve Fitting
    数学建模 常用
    “这么多人给我作证,我不怕”
    超星尔雅刷课辅助
    细思《都挺好》
    P5173 传球
    [ICPC 北京 2017 J题]HihoCoder 1636 Pangu and Stones
    CF 1131C Birthday
    CF 634A Island Puzzle
  • 原文地址:https://www.cnblogs.com/fanshuyao/p/6227166.html
Copyright © 2011-2022 走看看