這篇文章給大家分享的是有關(guān)java返回json的方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。
創(chuàng)新互聯(lián)公司專(zhuān)業(yè)提供樂(lè)山服務(wù)器托管服務(wù),為用戶(hù)提供五星數(shù)據(jù)中心、電信、雙線(xiàn)接入解決方案,用戶(hù)可自行在線(xiàn)購(gòu)買(mǎi)樂(lè)山服務(wù)器托管服務(wù),并享受7*24小時(shí)金牌售后服務(wù)。
方式1:當(dāng)然是手敲所有代碼,來(lái)進(jìn)行json數(shù)據(jù)的返回。
需要 HttpHttpServletRequest request HttpServletResponse response
后臺(tái):
@RequestMapping(value="/haha") public void xxx (HttpHttpServletRequest request,HttpServletResponse response) { JSONObject json =new JSONObject(); json.put("result"," success") response.setCharacterEncoding("utf-8"); response.setContentType("application/json;charset=utf-8"); PrintWriter out = null; out = response.getWriter(); out.write(json.toString()); }
前端:
$.ajax({ data : { // userNameOrTel: $("#user").val(), // password: $("#pwd").val() }, type : "post", url : "admin/login/", dataType : "json", contentType : "application/json;charset=utf-8", async : false, //同步 異步 success : function(data) { debugger; } } });
方式 2: @ResponseBody 注解
后臺(tái):
@ResponseBody @RequestMapping(value="/haha") public Msg xxx (){ return msg }
前端:
$.ajax({ data : { // userNameOrTel: $("#user").val(), // password: $("#pwd").val() }, type : "post", url : "admin/login/", dataType : "json", contentType : "application/json;charset=utf-8", async : false, //同步 異步 success : function(data) { debugger; } } });
方式 3 : @RestController 注解 (此類(lèi)里的所以方法返回值都是 Json)
前端 :
data:JSON.stringify({'channelId':channelId}), success:function(data){ alert(data.channelId); }, contentType:'application/json;charset=utf-8'
后臺(tái):
@RequestMapping(value="/login",produces="application/json;charset=UTF-8") @ResponseBody public String test2() { }
感謝各位的閱讀!關(guān)于java返回json的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!