本文介绍: 设置请求映射规则@RequestMapping,SpringBoot接口类注解接收。请求-相应模式的解释。post和get的区别。@PostMapping 等价于 @RequestMapping(method = RequestMethod.POST)@GetMapping 等价于 @RequestMapping(method = RequestMethod.GET)@PutMapping 等价于 @RequestMapping(method = RequestMethod.PUT)
请求-相应模式:
设置请求映射规则@RequestMapping
该注解可以加到方法上或者是类上。
path或者value属性都可以用来指定请求路径。
method属性可以用来指定可处理的请求方式。
例如:
请求的资源路径为/test/test1的请求能够被test1的post方法处理:
POST 请求:
GET 请求
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。