@RequestMapping 和 @GetMapping @PostMapping 区别

Spring4.3中引进了@GetMapping、@PostMapping 来帮助简化常用的HTTP方法的映射 并更好地表达被注解方法的语义

@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。

@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。
method=RequestMethod.POST:只接受post请求,其他的不行,如果接收的不是post请求会405报错

你可能感兴趣的:(@RequestMapping 和 @GetMapping @PostMapping 区别)