欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

http中5种常用请求方式:get、post、put、delete、patch

时间:2023-06-13
1、get 请求

@GetMapping("user/list") // 等价于@RequestMapping(value="user/list",method=RequestMethod.GET) @ResponseBody public List list(){ // TODO return null; }

2、post 请求

@PostMapping("user/add") // 等价于@RequestMapping(value="user/add",method=RequestMethod.POST) @ResponseBody public List add(@RequestBody User user){ // TODO return null; }

3、put 请求

@PutMapping("/user/{userId}") // 等价于@RequestMapping(value="/user/{userId}",method=RequestMethod.PUT) @ResponseBody public List update(@PathVariable(value = "userId") Long userId, @RequestBody User user){ // TODO return null; }

4、delete 请求

@DeleteMapping("/user/{userId}") // 等价于@RequestMapping(value="/user/{userId}",method=RequestMethod.DELETE) @ResponseBody public List delete(@PathVariable(value = "userId") Long userId){ // TODO return null; }

5、patch 请求

@PatchMapping("/user/profile") // 一般实际项目中,我们都是 PUT 不够用了之后才用 PATCH 请求去更新数据。 @ResponseBody public List updateUser(@RequestBody User user){ // TODO return null; }

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。