其他分享
首页 > 其他分享> > Spring部分新的请求映射简述以及请求方式(GET,POST)的差异

Spring部分新的请求映射简述以及请求方式(GET,POST)的差异

作者:互联网

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

@GetMapping:  处理get请求,传统的RequestMapping来编写应该是@RequestMapping(value = “/get/{id}”, method = RequestMethod.GET)

        新方法可以简写为: @GetMapping("/get/{id}")

@PostMapping: 处理post请求,传统的RequestMapping来编写应该是@RequestMapping(value = “/get/{id}”,method = RequestMethod.POST)

        新方法可以简写为: @PostMapping("/get/{id}")

@PutMapping: 和PostMapping作用等同,都是用来向服务器提交信息。如果是添加信息,倾向于用@PostMapping,如果是更新信息,倾向于用@PutMapping。两者差别不是很明显。

@DeleteMapping 删除URL映射,具体没有再实践中用过,没有实际体会到好的地方,未来用到再补充

get请求特点

post请求的特点

标签:RequestMapping,get,Spring,GET,PostMapping,post,id,请求
来源: https://www.cnblogs.com/diehuacanmeng/p/13651209.html