91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

霍州市| 绥宁县| 南城县| 开远市| 汽车| 青川县| 建宁县| 马边| 隆昌县| 游戏| 小金县| 信丰县| 黑山县| 新乡市| 永胜县| 平谷区| 高淳县| 文登市| 屏南县| 娄底市| 兴山县| 泰和县| 云和县| 石家庄市| 淄博市| 通河县| 泽州县| 临泽县| 仁布县| 新田县| 临猗县| 白水县| 龙南县| 大同县| 旬邑县| 鹤岗市| 德庆县| 专栏| 辽中县| 那坡县| 金昌市|