日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

springboot @RequestBody 接收字符串

發(fā)布時間:2024/9/19 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 springboot @RequestBody 接收字符串 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

前言

  • springboot 2.1.1.RELEASE

@RequestBody 接收字符串

@RequestMapping(method = {RequestMethod.POST})public ResultEntity form1(@RequestBody String requestBody) throws UnsupportedEncodingException {logger.info("================ request body ================");\logger.info("request body is : {}", requestBody);}

向接口傳送 application/json 格式的數(shù)據(jù)

客戶端調用代碼如下:

$.ajax({url:'http://localhost/api/spd',data: JSON.stringify({name:'zhangsan', age: 18}),type:'POST',contentType: 'application/json',success:function(result){console.log(result);},error:function(error){console.log(error);} });

服務端執(zhí)行結果:

00:11:55.972 [http-nio-8020-exec-5] INFO c.c.api.SpdApi - [form1,45] - request body is : {"name":"zhangsan","age":18}

向接口傳送 text/plain 格式的數(shù)據(jù)

客戶端調用代碼如下:

$.ajax({url:'http://localhost/api/spd',data: 'this is a message',type:'POST',contentType: 'text/plain',success:function(result){console.log(result);},error:function(error){console.log(error);} });

服務端執(zhí)行結果:

23:46:04.953 [http-nio-8020-exec-1] INFO c.c.api.SpdApi - [form1,45] - request body is : 'this is a message'

替代 @RequestBody 的辦法

如果不想用 @RequestBody ,可以使用下面的方法:

protected String getRequestBody(HttpServletRequest request) {try {BufferedReader reader = request.getReader();char[] buf = new char[512];int len = 0;StringBuffer contentBuffer = new StringBuffer();while ((len = reader.read(buf)) != -1) {contentBuffer.append(buf, 0, len);}return contentBuffer.toString();} catch (IOException e) {e.printStackTrace();}return "null";}

總結

以上是生活随笔為你收集整理的springboot @RequestBody 接收字符串的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。