在Spring MVC 中設定JSON 的Response Content-Type (@ResponseBody)
Spring MVC 的 @ResponseBody&&]
Spring MVC 的 @ResponseBody&&] 註解通常以以下形式傳回數據純文字或XML。但是,在處理 JSON 回應時,您可能需要確保設定正確的內容類型和字元集以避免編碼問題。
@RequestMapping(value = "/getDealers", method = RequestMethod.GET, produces = "application/json; charset=utf-8") @ResponseBody public String sendMobileData() { }
@RequestMapping(value = "/getDealers", method = RequestMethod.GET, 產生 =“application/json; charset=utf-8”) @ResponseBody 公共字串發送移動資料(){ }
此方法會覆寫預設的內容類型設置,確保回應以具有所需編碼的 JSON 形式返回。透過以這種方式自訂內容類型和字元集,您可以防止編碼不一致並確保在 Spring MVC 應用程式中正確處理 JSON 回應。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3