日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 前端技术 > javascript >内容正文

javascript

java webmethod 参数_java详解Spring接收web请求参数的方式

發(fā)布時(shí)間:2023/12/3 javascript 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java webmethod 参数_java详解Spring接收web请求参数的方式 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

本篇文章給大家?guī)?lái)的內(nèi)容是java詳解Spring接收web請(qǐng)求參數(shù)的方式 。有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你們有所幫助。

1 查詢(xún)參數(shù)

請(qǐng)求格式:url?參數(shù)1=值1&參數(shù)2=值2...

同時(shí)適用于GET和POST方式

spring處理查詢(xún)參數(shù)的方法又有幾種寫(xiě)法:

方法一:

方法參數(shù)名即為請(qǐng)求參數(shù)名// 查詢(xún)參數(shù)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中提取參數(shù)// 查詢(xún)參數(shù)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;

}

方法三:

方法參數(shù)名和請(qǐng)求參數(shù)名可以不一樣,通過(guò)@RequestParam注解來(lái)綁定參數(shù)// 查詢(xún)參數(shù)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;

}

方法四:

創(chuàng)建一個(gè)實(shí)體類(lèi)對(duì)象作為參數(shù)承載體,spring會(huì)根據(jù)參數(shù)名稱(chēng)自動(dòng)將參數(shù)綁定到實(shí)體類(lèi)對(duì)象的屬性上// 查詢(xún)參數(shù)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;

}

實(shí)體類(lèi)定義如下:@Data

@NoArgsConstructor

@AllArgsConstructor

@Builderpublic class User {

private String username;

private String password;

}

這里用到了第三方庫(kù)lombok,這樣就不需要在代碼中手動(dòng)添加get、set等方法,lombok會(huì)自動(dòng)添加。

發(fā)送請(qǐng)求的curl命令如下:curl -i 'http://192.168.1.14:8080/test/query1?username=aaa&password=bbb'

交互報(bào)文如下: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 表單參數(shù)

請(qǐng)求參數(shù)不在url中,而是在Body體中,格式為:url?參數(shù)1=值1&參數(shù)2=值2...

適用于POST方式

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

方法一:// 表單參數(shù)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;

}

方法二:// 表單參數(shù)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;

}

方法三:// 表單參數(shù)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;

}

方法四:// 表單參數(shù)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請(qǐng)求命令如下:curl -X POST -i -d "username=aaa&password=bbb" http://192.168.1.14:8080/test/form1

請(qǐng)求和響應(yīng)報(bào)文如下: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 路徑參數(shù)

請(qǐng)求參數(shù)為url中的一部分,格式為:url/參數(shù)1/參數(shù)2...

同時(shí)適用于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;

}

請(qǐng)求curl命令如下:curl -i http://192.168.1.14:8080/test/url/aaa/bbb

請(qǐng)求和響應(yīng)報(bào)文如下: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格式參數(shù)

請(qǐng)求參數(shù)在Body體中,并且為json格式。需要添加請(qǐng)求頭:Content-Type: application/json;charset=UTF-8

適用于POST方式

方法一:

定義實(shí)體類(lèi),將json對(duì)象解析成實(shí)力類(lèi),需要添加RequestBody注解// json參數(shù)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;

}

方法二:

如果不像定義實(shí)體類(lèi),也可以將json請(qǐng)求直接解析成JSONObject類(lèi)// json參數(shù)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對(duì)象直接解析成Map對(duì)象// json參數(shù)3

@RequestMapping(value = "/test/json3", method = RequestMethod.POST)

public String testJson3(@RequestBody Map userMap) {

String username = userMap.get("username");

String password = userMap.get("password");

System.out.println("username=" + username + ", password=" + password);

return "username=" + username + ", password=" + password;

}

請(qǐng)求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

請(qǐng)求和響應(yīng)報(bào)文如下: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

總結(jié)

以上是生活随笔為你收集整理的java webmethod 参数_java详解Spring接收web请求参数的方式的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。