Spring | @PostMapping和@GetMapping

  • @GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。该注解将HTTP Get 映射到特定的处理方法上。

  • 同理PostMapping也是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。

特别说明:@RequestMapping如果没有指定请求方式,将接收Get、Post、Head、Options等所有的请求方式。

原文链接:https://blog.csdn.net/rocling/article/details/81457997

发布了58 篇原创文章 · 获赞 4 · 访问量 8604

猜你喜欢

转载自blog.csdn.net/qq_43604667/article/details/104683755