@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解相当与是@RequestMapping(method=Request.GET)的缩写;
@PostMapping是一个组合注解相当与是@RequestMapping(method=Request.POST)的缩写;
@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解相当与是@RequestMapping(method=Request.GET)的缩写;
@PostMapping是一个组合注解相当与是@RequestMapping(method=Request.POST)的缩写;