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)的缩写
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐