SpringMVC给前段返回的JSON数据中文乱码问题。

SpringMVC给前段返回的JSON数据中文乱码问题。,第1张

概述由于SpringMVC的默认编码问题(不支持中文),所以在@ResponseBody里返回中文时会出现乱码。 方法一,在XML文档里写入全局设置,改为UTF8 //UTF-8编码指定。 方法二,在@RequestMapping中添加produces = "text/html;charset=utf-8",但是次方法只适用于局部。

由于SpringMVC的默认编码问题(不支持中文),所以在@ResponseBody里返回中文时会出现乱码。
方法一,在XML文档里写入全局设置,改为UTF8


   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns:context="http://www.springframework.org/schema/context"   xmlns:mvc="http://www.springframework.org/schema/mvc"   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

<context:component-scan base-package="base.code.controller"/>

//UTF-8编码指定。

<bean
ID="internalResourceVIEwResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".HTML"/>

方法二,在@RequestMapPing中添加produces = "text/HTML;charset=utf-8",但是次方法只适用于局部。

总结

以上是内存溢出为你收集整理的SpringMVC给前段返回的JSON数据中文乱码问题。全部内容,希望文章能够帮你解决SpringMVC给前段返回的JSON数据中文乱码问题。所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1227667.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存