快捷搜索:  汽车  科技

springboot是如何接收参数的(springboot中的参数请求get和post解析)

springboot是如何接收参数的(springboot中的参数请求get和post解析)/** * 在url中拼接参数 单个参数或者多个参数 无论是post还是get 变量名相同都可以接收到参数 * @param name */ @GetMapping public void getMapping(String name){ System.out.println("----getMapping=" name); } @PostMapping public void postMapping(String name){ System.out.println("----postMapping=" name); } @GetMapping("/user") public void getUser(String id String username){ System.out.println("---

1.GET请求和POST请求的区别大致分以下几条

1.GET请求参数在url中,对url长度有限制也就是对get请求的携带参数有限制,POST可以携带的数据量较大,body可以是任何参数包括二进制文件,基本上可以说没限制

2.GET没有请求体,POST有请求体

3.GET传输比POST快

4.POST比GET要安全

2.参数传递举例,包括单个参数,多个参数(对象接收或者map都可以)

/** * 在url中拼接参数 单个参数或者多个参数 无论是post还是get 变量名相同都可以接收到参数 * @param name */ @GetMapping public void getMapping(String name){ System.out.println("----getMapping=" name); } @PostMapping public void postMapping(String name){ System.out.println("----postMapping=" name); } @GetMapping("/user") public void getUser(String id String username){ System.out.println("----getUser=" id " username=" username); } @PostMapping("/user") public void postUser(String id String username){ System.out.println("----postUser=" id " username=" username); }

springboot是如何接收参数的(springboot中的参数请求get和post解析)(1)

2.2 map传递多个参数 get 和post

springboot是如何接收参数的(springboot中的参数请求get和post解析)(2)

springboot是如何接收参数的(springboot中的参数请求get和post解析)(3)

springboot是如何接收参数的(springboot中的参数请求get和post解析)(4)

springboot是如何接收参数的(springboot中的参数请求get和post解析)(5)

猜您喜欢: