SpringMVC之组合注解@GetMapping

来源:互联网 发布:淘宝出售京东e卡 编辑:程序博客网 时间:2024/06/01 07:57
Spring4.3中引进了{@GetMapping、@PostMapping、@PutMapping、@DeleteMapping、@PatchMapping},来帮助简化常用的HTTP方法的映射,并更好地表达被注解方法的语义。

以@GetMapping为例,Spring官方文档说:
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。该注解将HTTP Get 映射到 特定的处理方法上。

 Difference between @GetMapping & @RequestMapping:
@GetMapping does not support theconsumesattribute of@RequestMapping.
上文翻译:
@GetMapping  和 @RequestMapping的不同之处在于@GetMapping不支持@RequestMapping的自定义属性。

总结:Spring4.3中引进了{@GetMapping、@PostMapping}简化书写,高效开发!
原创粉丝点击