溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

發(fā)布時(shí)間:2021-11-02 13:54:49 來(lái)源:億速云 閱讀:1900 作者:小新 欄目:開(kāi)發(fā)技術(shù)

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

請(qǐng)求數(shù)據(jù)

  • id:1

  • roleName:admin

  • roleDes:擁有admin權(quán)限

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權(quán)限

第二種

@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權(quán)限

第三種

@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); 
    }

返回錯(cuò)誤信息:

“Content type ‘a(chǎn)pplication/x-www-form-urlencoded;charset=UTF-8' not supported”

SpringMVC application/x-www-form-urlencoded接收方式測(cè)試

前提:為了便于理解

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

  • 方法使用@RequestMapping

  • postman都是如下請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

1.參數(shù)前不加注解

1.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

成功!

1.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

失??!

1.3 pojo

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

成功!

2.參數(shù)前添加@RequestParam

2.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

失?。?/p>

2.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

成功!

2.3 poji

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

失?。?/p>

3.參數(shù)前添加@RequestBody

3.1 request

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

失??!

3.2 map

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

失敗!

3.3 pojo

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求

springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求


Request

Map

Pojo

不加注解

×

@RequestParam

×

×

@RequestBody

×

×

×

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“springboot怎么接收application/x-www-form-urlencoded類型的請(qǐng)求”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI