springboot常见get、post请求参数处理

更新时间:2023-06-30 10:36:18 阅读: 评论:0

护手霜排行榜springboot常见get、post请求参数处理
spring boot 常见http get ,post请求参数处理
 在定义⼀个Rest接⼝时通常会利⽤GET、POST、PUT、DELETE来实现数据的增删改查;这⼏种⽅式有的需要传递参数,后台开发⼈员必须对接收到的参数进⾏参数验证来确保程序的健壮性
GET
⼀般⽤于查询数据,采⽤明⽂进⾏传输,⼀般⽤来获取⼀些⽆关⽤户信息的数据
POST
⼀般⽤于插⼊数据
PUT
⼀般⽤于数据更新
DELETE
⼀般⽤于数据删除
⼀般都是进⾏逻辑删除(即:仅仅改变记录的状态,⽽并⾮真正的删除数据)
@PathVaribale 获取url中的数据
@RequestParam 获取请求参数的值
@GetMapping 组合注解,是 @RequestMapping(method = RequestMethod.GET) 的缩写
@RequestBody 利⽤⼀个对象去获取前端传过来的数据
1. PathVaribale 获取url路径的数据
请求URL:
localhost:8080/hello/id 获取id值
实现代码如下:
@RestController
public class HelloController {
@RequestMapping(value="/hello/{id}/{name}",method= RequestMethod.GET)
public String sayHello(@PathVariable("id") Integer id,@PathVariable("name") String name){
return "id:"+id+" name:"+name;
}
}
在浏览器中输⼊地址:
localhost:8080/hello/100/hello
输出:
id:81name:hello
2. RequestParam 获取请求参数的值
获取url参数值,默认⽅式,需要⽅法参数名称和url参数保持⼀致
localhost:8080/hello?id=1000观音山公园
@RestController
public class HelloController {
@RequestMapping(value="/hello",method= RequestMethod.GET)
public String sayHello(@RequestParam Integer id){
return "id:"+id;
}
}
输出:
id:100
url中有多个参数时,如:
localhost:8080/hello?id=98&&name=helloworld
具体代码如下:
@RestController
public class HelloController {
@RequestMapping(value="/hello",method= RequestMethod.GET)
public String sayHello(@RequestParam Integer id,@RequestParam String name){
丹麦英文return "id:"+id+ " name:"+name;
}
}
获取url参数值,执⾏参数名称⽅式
localhost:8080/hello?urId=1000
@RestController
public class HelloController {
@RequestMapping(value="/hello",method= RequestMethod.GET)
public String sayHello(@RequestParam("urId") Integer id){
return "id:"+id;属狗的人今年多大
古诗词大全
}
}
输出:
id:100
注意
不输⼊id的具体值,此时返回的结果为null。具体测试结果如下:
淡泊自抑
id:null
不输⼊id参数,则会报如下错误:
whitelable Error Page错误
3. GET参数校验
⽤法:不输⼊id时,使⽤默认值
具体代码如下:
社戏赏析localhost:8080/hello
@RestController
public class HelloController {
@RequestMapping(value="/hello",method= RequestMethod.GET)
//required=fal 表⽰url中可以⽆id参数,此时就使⽤默认参数
雪景诗句public String sayHello(@RequestParam(value="id",required = fal,defaultValue = "1") Integer id){ return "id:"+id;
}
}
输出
id:1

本文发布于:2023-06-30 10:36:18,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1070034.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:参数   数据   获取   结果   请求   实现   需要   记录
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图