中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

中牟县| 都兰县| 宣化县| 茶陵县| 吉木萨尔县| 定安县| 无极县| 阜新市| 偃师市| 岳西县| 广水市| 咸阳市| 明光市| 上虞市| 尉犁县| 麻阳| 张家口市| 祁连县| 通河县| 策勒县| 永宁县| 丰原市| 石嘴山市| 博乐市| 阜康市| 清原| 三台县| 绵阳市| 隆昌县| 永康市| 武邑县| 南澳县| 大安市| 卢龙县| 莱阳市| 吕梁市| 富源县| 虞城县| 法库县| 通江县| 武乡县|