springmvc 4.x 處理json 數據時中文亂碼

    緣由: springmvc在處理請求時,默認採用的是 ISO-8859-1 編碼格式,具體緣由不瞭解,我的以爲是尚未來得及更改,因此在處理一些json格式的時候,會出現中文亂碼。 spring

org.springframework.http.converter.StringHttpMessageConverter類是處理請求或相應字符串的類,而且默認字符集爲ISO-8859-1,因此在當返回json中有中文時會出現亂碼。 json

解決辦法,只需在配置文件中加入以下代碼:
mvc

<!-- 處理請求時返回json字符串的中文亂碼問題 -->
    <mvc:annotation-driven>
	    <mvc:message-converters>
	        <bean class="org.springframework.http.converter.StringHttpMessageConverter">
	            <property name="supportedMediaTypes">
	                <list>
	                    <value>application/json;charset=UTF-8</value>
	                </list>
	            </property>
	        </bean>
	    </mvc:message-converters>
	</mvc:annotation-driven>
相關文章
相關標籤/搜索