Get请求之接受参数
@PathVariable是从url地址中取值,
而@RequestParm是从键值对的参数中取值,
都可以为变量名起别名
演示示例
01 从url中获取单个参数
02 从url中获取多个参数
localhost:8999/callback/45646/body/46546
03 从请求参数中获取值
localhost:8999/callback?auth_code=4546
注意事项:接受参数时无需考虑参数的顺序问题
04 普通的接收get请求参数
localhost:8999/callback/v2?authCode=4546
05 用对象接收get请求参数
localhost:8999/get?name=test&authCode=15646548489
实体类
参数值可以为null,如果为必须参数可以加校验,SpringBoot各种参数效验
RestController public class CallbackController { //01 从url中获取单个参数 //localhost:8999/callback/auth @GetMapping("/callback/{auth_code}") public String getValueByUrl(@PathVariable("auth_code") String authCode) { String result = "success:" + authCode; return result; } // 02 从url中获取多个参数 //localhost:8999/callback/45646/body/46546 @GetMapping("/callback/{auth_code}/body/{state}") public String callbackRestTest(@PathVariable("auth_code") String authCode, @PathVariable("state") String state) { String result = "success:" + authCode + "," + state; return result; } // 03 从请求参数中获取值 //localhost:8999/callback?auth_code=4546 @GetMapping("/callback") public String getValueByQueryParams(@RequestParam("auth_code") String authCode) { String result = "success:" + authCode; return result; } // 04 普通的接收get请求参数 //localhost:8999/callback/v2?authCode=4546 @GetMapping("/callback/v2") public String commonGetQuery(String authCode) { String result = "success:" + authCode; return result; } //05 用对象接受get请求参数 @GetMapping("/get") public String testGet(GetDTO dto) { String result = "success:" + dto; return result; } }