前言:
本系列博客记录 springboot 求学之路:
springboot 有很多请求方式,这里记录一下如题的一个疑问,
1.概说
@GetMapping
@PostMapping
@PutMapping
@DeleteMapping
@PatchMapping
从名字不难看出这些是定义路由的访问方式,get、post等,点进去查看他们的上层代码,例如 @GetMapping,在最上面有几行注释,如下
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@RequestMapping(
method = {RequestMethod.GET}
)
public @interface GetMapping {
@AliasFor(
annotation = RequestMapping.class
)
.......
这里面有声明 ,很明显就是@RequestMapping的注解,并使用 get方法
@RequestMapping(
method = {RequestMethod.GET}
)
到这里几乎就很明显了,上面的几个注解都是包含@RequestMapping的组合注解,简化了原来的使用方法。
下面这两个是等价的:
@GetMapping(path = "/get")
public String getName() {
return "";
}
@RequestMapping(path = "/get", method = RequestMethod.GET)
public String get() {
return "";
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/16573.html