@RequestMapping、@GetMapping、@PostMapping、@PutMapping、@DeleteMapping、@PatchMapping详解
Spring4.3中引进了{@GetMapping、@PostMapping、@PutMapping、@DeleteMapping、@PatchMapping} 来帮助简化常用的HTTP方法的映射 并更好的表达被注解方法的语义1)@GetMapping: 处理get请求,传统的RequestMapping来编写应该是@RequestMapping(value = "/get/{id}", meth
·
Spring4.3中引进了{@GetMapping、@PostMapping、@PutMapping、@DeleteMapping、@PatchMapping} 来帮助简化常用的HTTP方法的映射 并更好的表达被注解方法的语义
1)@GetMapping: 处理get请求,传统的RequestMapping来编写应该是@RequestMapping(value = "/get/{id}", method = RequestMethod.GET)
新方法可以简写为:
@GetMapping("/get/{id}")
2)@PostMapping: 处理post请求,传统的RequestMapping来编写应该是@RequestMapping(value = "/get/{id}",method = RequestMethod.POST)
新方法可以简写为:
@PostMapping("/get/{id}")
3)@PutMapping: 和PostMapping作用等同,都是用来向服务器提交信息。如果是添加信息,倾向于用@PostMapping,如果是更新信息,倾向于用@PutMapping。两者差别不是很明显。
4)@DeleteMapping 删除URL映射()逻辑删除用PutMapping物理删除用DeleteMapping
5)@PatchMapping 理解等同于更新,具体没有再实践中用过...
总结:
@GetMapping 是一个组合注解 是 @RequestMapping(method = RequestMethod.GET)的缩写
@DeleteMapping 是一个组合注解 是 @RequestMapping(method = RequestMethod.DELETE)的缩写
@PutMapping 是一个组合注解 是 @RequestMapping(method = RequestMethod.PUT)的缩写
@PostMapping 是一个组合注解 是 @RequestMapping(method = RequestMethod.POST)的缩写
更多推荐
已为社区贡献2条内容
所有评论(0)