SpringMVC 使用@ResponseBody返回json 中文亂碼
方法一,使用(produces = "application/json; charset=utf-8"):
@RequestMapping(value="/getUsersByPage",produces = "application/json; charset=utf-8") // @RequestMapping("/getUsersByPage") @ResponseBody public String getUsersByPage(String page,String rows,String text,HttpServletRequest request,HttpServletResponse response){
方法二,在spring-mvc.xml中新增:
<!-- 處理請求返回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>
相關文章
- 解決Spring中ResponseBody返回中文亂碼問題Spring
- Spring--SpringMVC3.1的ResponseBody返回字串亂碼問題解決SpringMVC字串
- C# 解決httplistener querystring 中文亂碼、返回json中文格式亂碼C#HTTPJSON
- SpringMVC中文亂碼踩坑SpringMVC
- SpringMVC中文亂碼問題SpringMVC
- springmvc當要返回中文字串時出現亂碼SpringMVC字串
- springMVC @ResponseBody 原理SpringMVC
- Springmvc中文亂碼解決辦法SpringMVC
- springmvc 解決中文亂碼問題SpringMVC
- springmvc向前端傳送json資料中文亂碼問題解決方法SpringMVC前端JSON
- SpringMvc解決Restful中文亂碼問題SpringMVCREST
- PHP-json_encode中文亂碼PHPJSON
- Spring MVC3返回JSON資料中文亂碼問題解決(轉)SpringMVCJSON
- spring boot 解決後臺返回 json 到前臺中文亂碼之後出現返回json資料包錯Spring BootJSON
- requests請求返回內容 中文亂碼問題
- springMVC的@ResponseBody、@RequestBody使用需要注意的地方SpringMVC
- SpringMVC的@ResponseBody註解說明SpringMVC
- 使用@ResponseBody物件轉json和@RequestBody進行json轉物件案例物件JSON
- ajax呼叫,action返回的中文為亂碼的解決方案
- SpringBoot如何優雅的使用@ResponseBody返回圖片Spring Boot
- SpringMVC:@ResponseBody註解與HttpServletResponse物件SpringMVCHTTPServlet物件
- mysql中文亂碼MySql
- secureCRT中文亂碼Securecrt
- oracle 中文亂碼Oracle
- PHP中文亂碼PHP
- gedit中文亂碼
- PLSQL中文亂碼SQL
- gitk中文亂碼Git
- python json.dumps中文亂碼問題解決PythonJSON
- java web 中文亂碼JavaWeb
- JS cookie 中文亂碼JSCookie
- springMVC儲存資料到mysql資料庫中文亂碼問題解決方法SpringMVCMySql資料庫
- Get提交方式中文亂碼
- JD-GUI中文亂碼GUI
- EasyUI 中文亂碼問題UI
- oracle中文顯示亂碼Oracle
- RHEL中文亂碼解決
- HttpClient 解決中文亂碼HTTPclient