@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解相当与是@RequestMapping(method=Request.GET)的缩写;
@PostMapping是一个组合注解相当与是@RequestMapping(method=Request.POST)的缩写;
本文介绍了Spring MVC中用于映射HTTP请求的注解@GetMapping和@PostMapping的区别。这两个注解都是@RequestMapping的组合形式,分别对应HTTP GET和POST方法。
@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解相当与是@RequestMapping(method=Request.GET)的缩写;
@PostMapping是一个组合注解相当与是@RequestMapping(method=Request.POST)的缩写;
3378
783

被折叠的 条评论
为什么被折叠?