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>
相關文章
- C# 解決httplistener querystring 中文亂碼、返回json中文格式亂碼C#HTTPJSON
- SpringMVC中文亂碼踩坑SpringMVC
- springmvc當要返回中文字串時出現亂碼SpringMVC字串
- springmvc 解決中文亂碼問題SpringMVC
- springmvc向前端傳送json資料中文亂碼問題解決方法SpringMVC前端JSON
- springMVC @ResponseBody 原理SpringMVC
- spring boot 解決後臺返回 json 到前臺中文亂碼之後出現返回json資料包錯Spring BootJSON
- Spring MVC3返回JSON資料中文亂碼問題解決(轉)SpringMVCJSON
- requests請求返回內容 中文亂碼問題
- python json.dumps中文亂碼問題解決PythonJSON
- SpringBoot如何優雅的使用@ResponseBody返回圖片Spring Boot
- 使用@ResponseBody物件轉json和@RequestBody進行json轉物件案例物件JSON
- SpringMVC:@ResponseBody註解與HttpServletResponse物件SpringMVCHTTPServlet物件
- SpringMVC的@ResponseBody註解說明SpringMVC
- gitk中文亂碼Git
- hive 中文亂碼Hive
- plsql中文亂碼SQL
- SpringMVC原始碼剖析5:訊息轉換器HttpMessageConverter與@ResponseBody註解SpringMVC原始碼HTTP
- java web 中文亂碼JavaWeb
- SpringMVC的亂碼與時間轉換SpringMVC
- 獲取微信二維碼返回亂碼
- vim 開啟中文亂碼
- Get提交方式中文亂碼
- vscode中文亂碼問題VSCode
- MySQL解決中文亂碼MySql
- JD-GUI中文亂碼GUI
- EasyUI 中文亂碼問題UI
- idea控制檯中文亂碼Idea
- java,awt,中文方框,中文亂碼10/16Java
- matplotlib 圖示 中文亂碼, 與 wordcloud 詞雲圖 中文亂碼 解決方法Cloud
- 好程式設計師Java分享SpringMVC之@ResponseBody註解程式設計師JavaSpringMVC
- 解決 php 使用json_encode存入資料庫中的中文亂碼丟失反斜槓問題PHPJSON資料庫
- 解決Hive使用desc顯示中文註釋亂碼Hive
- @responseBody註解的使用
- 用 codeium外掛 提示中文 則 中文亂碼
- excel開啟csv中文亂碼Excel
- 解決中文亂碼問題
- ROS中解決中文亂碼ROS
- Jmeter 切換中文亂碼,求解JMeter