问题
使用SpringMVC在返回一个字符串时发生了中文乱码问题。produces
属性无效
@RequestMapping(value = "/nihao", produces = "text/plain;charset=UTF-8")
@ResponseBody
public String hello(HttpServletResponse response) throws UnsupportedEncodingException {
User user = new User();
user.setSex("男");
user.setName("Clover");
user.setAge(19);
return user.toString();
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/plain;charset=ISO-8859-1
Content-Length: 36
Date: Sun, 01 Aug 2021 12:20:21 GMT
Connection: close
{
"name": "Clover",
"sex": "?",
"age": 19
}
添加常用的过滤器org.springframework.web.filter.CharacterEncodingFilter
依然无法解决
<filter> <filter-name>characterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>characterEncodingFilter</filter-name> <url-pattern>*
。解决方案
方案一
注册一个
StringHttpMessageConverter
,注册之后不再使用SpringMVC默认的。它可以将produces
设置为Content-Type
。也就是说@RequestMapping
的produces
属性生效了<mvc:annotation-driven> <mvc:message-converters> <bean class="org.springframework.http.converter.StringHttpMessageConverter"/> </mvc:message-converters> </mvc:annotation-driven>
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Accept-Charset: ... Content-Type: text/plain;charset=utf-8 Content-Length: 37 Date: Sun, 01 Aug 2021 13:09:35 GMT Connection: close { "name": "Clover", "sex": "男", "age": 19 }
方案二
Accept问题,SpringMVC的默认
StringHttpMessageConverter
处理的是*/*
,那手动设置一个Accept尽可能避开它…..POST {{url}}/nihao HTTP/1.1 Accept: text/plain;charset=utf-8
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: text/plain;charset=utf-8 Content-Length: 38 Date: Sun, 01 Aug 2021 13:20:16 GMT Connection: close { "name": "Clover", "sex": "男", "age": 19 }
到此这篇关于SpringMVC中文乱码踩坑记录的文章就介绍到这了,更多相关SpringMVC中文乱码内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机SpringMVC中文乱码踩坑记录
后端开发2024-04-02
SpringMVC配置404踩坑记录
后端开发2024-04-02
Java中Objects.equals踩坑记录
后端开发2024-04-02
mysql中文乱码记录
后端开发2021-09-04
TypeScript中集成Tween.js踩坑记录
后端开发2023-01-28
DBeaver导入csv文件的踩坑记录
后端开发2024-10-07
react中使用useEffect及踩坑记录
后端开发2022-11-13
Flutter中关于angle的踩坑记录
后端开发2024-04-02
vue3中vuex与pinia的踩坑笔记记录
后端开发2024-04-02
python中mediapipe库踩过的坑实战记录
后端开发2023-05-14
SpringCloud整合Activiti过程中的踩坑记录
后端开发2024-04-02
vue遍历中存在el-form之踩坑记录
后端开发2022-11-13
Vue中使用iframe踩坑问题记录iframe+postMessage
后端开发2024-04-02
JavaWeb踩坑记录之项目访问不到html文件
后端开发2024-04-02
sql语句中union的用法与踩坑记录
后端开发2024-04-02
MySQL中case when对NULL值判断的踩坑记录
后端开发2024-04-02
SpringMVC 中文乱码的解决方案
后端开发2024-04-02
SpringMVC中出现中文乱码怎么解决
后端开发2023-06-20
SpringMVC中出现中文乱码如何解决
后端开发2023-06-14
咦!没有更多了?去看看其它编程学习网 内容吧