美文网首页Spring
@RequestMapping 和 @GetMapping @P

@RequestMapping 和 @GetMapping @P

作者: qqqywy | 来源:发表于2018-10-24 21:57 被阅读717次
Spring4.3中引进了@GetMapping、@PostMapping 来帮助简化常用的HTTP方法的映射 并更好地表达被注解方法的语义

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

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

相关文章

网友评论

    本文标题:@RequestMapping 和 @GetMapping @P

    本文链接:https://www.haomeiwen.com/subject/ytlftqtx.html