亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot怎么接收application/x-www-form-urlencoded類型的請求

發布時間:2021-11-02 13:54:49 來源:億速云 閱讀:1912 作者:小新 欄目:開發技術

這篇文章主要介紹了springboot怎么接收application/x-www-form-urlencoded類型的請求,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

請求數據

  • id:1

  • roleName:admin

  • roleDes:擁有admin權限

Controller幾種處理方式

第一種

@ApiOperation("查詢用戶")
    @PostMapping("/detailByParam")
    public void detailByParam(@RequestParam (value = "id") Integer id,@RequestParam(value = "roleName") String roleName,@RequestParam(value = "roleDes") String roleDes) {
     System.out.println(">>>id="+id+",roleName="+roleName+",roleDes="+roleDes);
 }

打印信息:

>>>id=1,roleName=admin,roleDes=擁有admin權限

第二種

@ApiOperation("查詢用戶")
    @PostMapping("/detailByParam")
    public void detailByParam(@RequestParam Map<String, String> params) {
        System.out.println(">>>id="+params.get("id")+",roleName="+params.get("roleName")+",roleDes="+params.get("roleDes"));
    }

打印信息:

>>>id=1,roleName=admin,roleDes=擁有admin權限

第三種

@ApiOperation("查詢用戶")
    @PostMapping("/detailByParam")
    public void detailByParam(@RequestBody String params) {
        System.out.println(">>>"+params);
    }

打印信息:

>>>id=1&roleName=admin&roleDes=%E6%8B%A5%E6%9C%89admin%E6%9D%83%E9%99%90

第四種

@ApiOperation("查詢用戶")
    @PostMapping("/detailByParam")
    public void detailByParam(@RequestBody GetRoleParam getRoleParam) {
        System.out.println(">>>"+getRoleParam); 
    }

返回錯誤信息:

“Content type ‘application/x-www-form-urlencoded;charset=UTF-8' not supported”

SpringMVC application/x-www-form-urlencoded接收方式測試

前提:為了便于理解

  • 類全部使用@Controller,不使用RestController

  • 方法使用@RequestMapping

  • postman都是如下請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

1.參數前不加注解

1.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

成功!

1.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

失敗!

1.3 pojo

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

成功!

2.參數前添加@RequestParam

2.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

失敗!

2.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請求

成功!

2.3 poji

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

失敗!

3.參數前添加@RequestBody

3.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

失敗!

3.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求

失敗!

3.3 pojo

springboot怎么接收application/x-www-form-urlencoded類型的請求

springboot怎么接收application/x-www-form-urlencoded類型的請求


Request

Map

Pojo

不加注解

×

@RequestParam

×

×

@RequestBody

×

×

×

感謝你能夠認真閱讀完這篇文章,希望小編分享的“springboot怎么接收application/x-www-form-urlencoded類型的請求”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

观塘区| 伊吾县| 奉节县| 开江县| 永年县| 扎囊县| 陕西省| 上杭县| 清苑县| 沙洋县| 新平| 萨迦县| 昌黎县| 合肥市| 洪洞县| 南阳市| 波密县| 马关县| 女性| 凌源市| 遂川县| 淮滨县| 祁阳县| 贵港市| 冕宁县| 新野县| 招远市| 桐城市| 读书| 镇沅| 晴隆县| 祁门县| 壶关县| 玛沁县| 慈利县| 佛学| 连江县| 白水县| 巴彦县| 安宁市| 夏河县|