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

溫馨提示×

溫馨提示×

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

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

java中Spring接收web請求參數的方式有哪些

發布時間:2020-10-26 10:33:19 來源:億速云 閱讀:274 作者:小新 欄目:編程語言

小編給大家分享一下java中Spring接收web請求參數的方式有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1 查詢參數

請求格式:url?參數1=值1&參數2=值2...
同時適用于GET和POST方式
spring處理查詢參數的方法又有幾種寫法:

方法一:
方法參數名即為請求參數名

  // 查詢參數1
  @RequestMapping(value = "/test/query1", method = RequestMethod.GET)  
  public String testQuery1(String username, String password) {
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法二:
從HttpServletRequest中提取參數

  // 查詢參數2
  @RequestMapping(value = "/test/query2", method = RequestMethod.GET)  
  public String testQuery2(HttpServletRequest request) {
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法三:
方法參數名和請求參數名可以不一樣,通過@RequestParam注解來綁定參數

  // 查詢參數3
  @RequestMapping(value = "/test/query3", method = RequestMethod.GET)  
  public String testQuery3(@RequestParam("username") String un, @RequestParam("password") String pw) {
    System.out.println("username=" + un + ", password=" + pw);    
    return "username=" + un + ", password=" + pw;
  }

方法四:
創建一個實體類對象作為參數承載體,spring會根據參數名稱自動將參數綁定到實體類對象的屬性上

  // 查詢參數4
  @RequestMapping(value = "/test/query4", method = RequestMethod.GET)  
  public String testQuery4(User user) {
    String username = user.getUsername();
    String password = user.getPassword();
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

實體類定義如下:

@Data
@NoArgsConstructor
@AllArgsConstructor
@Builderpublic class User {  
   private String username;  
   private String password;
}

這里用到了第三方庫lombok,這樣就不需要在代碼中手動添加get、set等方法,lombok會自動添加。

發送請求的curl命令如下:

curl -i 'http://192.168.1.14:8080/test/query1?username=aaa&password=bbb'

交互報文如下:

GET /test/query1?username=aaa&password=bbb HTTP/1.1
Host: 192.168.1.14:8080
User-Agent: curl/7.58.0
Accept: */*HTTP/1.1 200 
Content-Type: text/plain;charset=UTF-8
Content-Length: 26
Date: Thu, 25 Oct 2018 07:01:30 GMT

username=aaa, password=bbb

2 表單參數

請求參數不在url中,而是在Body體中,格式為:url?參數1=值1&參數2=值2...

適用于POST方式

表單參數處理方法和前面的請求參數處理方法幾乎完全一樣,只是RequestMethod注解中將method方法設置成POST方法

方法一:

  // 表單參數1
  @RequestMapping(value = "/test/form1", method = RequestMethod.POST)  
  public String testForm1(String username, String password) {
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法二:

  // 表單參數2
  @RequestMapping(value = "/test/form2", method = RequestMethod.POST)  
  public String testForm2(HttpServletRequest request) {
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法三:

  // 表單參數3
  @RequestMapping(value = "/test/form3", method = RequestMethod.POST)  
  public String testForm3(@RequestParam("username") String un, @RequestParam("password") String pw) {
    System.out.println("username=" + un + ", password=" + pw);    
    return "username=" + un + ", password=" + pw;
  }

方法四:

  // 表單參數4
  @RequestMapping(value = "/test/form4", method = RequestMethod.POST)
  public String testForm4(User user) {
    String username = user.getUsername();
    String password = user.getPassword();
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

curl請求命令如下:

curl -X POST -i -d "username=aaa&password=bbb" http://192.168.1.14:8080/test/form1

請求和響應報文如下:

POST /test/form1 HTTP/1.1
Host: 192.168.1.14:8080
User-Agent: curl/7.58.0
Accept: */*
Content-Length: 25
Content-Type: application/x-www-form-urlencoded

username=aaa&password=bbbHTTP/1.1 200 
Content-Type: text/plain;charset=UTF-8
Content-Length: 26
Date: Thu, 25 Oct 2018 07:05:35 GMT

username=aaa, password=bbb

3 路徑參數

請求參數為url中的一部分,格式為:url/參數1/參數2...
同時適用于GET和POST方式
代碼如下:

  @RequestMapping(value = "/test/url/{username}/{password}", method = RequestMethod.GET)  
  public String testUrl(@PathVariable String username, @PathVariable String password) {
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

請求curl命令如下:

curl -i http://192.168.1.14:8080/test/url/aaa/bbb

請求和響應報文如下:

GET /test/url/aaa/bbb HTTP/1.1
Host: 192.168.1.14:8080
User-Agent: curl/7.58.0
Accept: */*HTTP/1.1 200 
Content-Type: text/plain;charset=UTF-8
Content-Length: 26
Date: Thu, 25 Oct 2018 07:07:44 GMT

username=aaa, password=bbb

4 json格式參數

請求參數在Body體中,并且為json格式。需要添加請求頭:Content-Type: application/json;charset=UTF-8
適用于POST方式
方法一:
定義實體類,將json對象解析成實力類,需要添加RequestBody注解

  // json參數1
  @RequestMapping(value = "/test/json1", method = RequestMethod.POST)  
  public String testJson1(@RequestBody User user) {
    String username = user.getUsername();
    String password = user.getPassword();
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法二:

如果不像定義實體類,也可以將json請求直接解析成JSONObject類

  // json參數2
  @RequestMapping(value = "/test/json2", method = RequestMethod.POST)  
  public String testJson2(@RequestBody JSONObject json) {
    String username = json.getString("username");
    String password = json.getString("password");
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

方法三:

也可以將json對象直接解析成Map對象

  // json參數3
  @RequestMapping(value = "/test/json3", method = RequestMethod.POST)  
  public String testJson3(@RequestBody Map<String, String> userMap) {
    String username = userMap.get("username");
    String password = userMap.get("password");
    System.out.println("username=" + username + ", password=" + password);    
    return "username=" + username + ", password=" + password;
  }

請求curl命令如下:

curl -X POST -i -H 'Content-Type: application/json;charset=UTF-8' -d '{    
   "username" : "aaa",    
   "password" : "bbb"
} 
'http://192.168.1.14:8080/test/json1

請求和響應報文如下:

POST /test/json1 HTTP/1.1
Host: 192.168.1.14:8080
User-Agent: curl/7.58.0
Accept: */*
Content-Type: application/json;charset=UTF-8
Content-Length: 52


{
    "username" : "aaa",
    "password" : "bbb"
}HTTP/1.1 200 
Content-Type: text/plain;charset=UTF-8
Content-Length: 26
Date: Thu, 25 Oct 2018 07:09:06 GMT

username=aaa, password=bbb

以上是java中Spring接收web請求參數的方式有哪些的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

朔州市| 乌恰县| 六盘水市| 黄浦区| 镇沅| 宜良县| 汝城县| 东山县| 本溪市| 炉霍县| 连江县| 康马县| 克什克腾旗| 栖霞市| 教育| 邢台县| 海宁市| 垫江县| 娱乐| 姜堰市| 宁化县| 驻马店市| 民勤县| 哈巴河县| 南京市| 仙居县| 潜山县| 怀宁县| 明水县| 迁安市| 晋中市| 吉隆县| 陆丰市| 二连浩特市| 中阳县| 新源县| 武冈市| 额尔古纳市| 环江| 盖州市| 新乡市|