getMapping、postMapping和requestMapping区别
@RequestMapping(method = RequestMethod.GET)
说明@GetMapping就是@RequestMapping附加了get请求方法
@PostMapping同理如上,就是附加了post请求方法
什么时候使用
-
前端method中特指了get或post的时候分别使用@GetMapping和@PostMapping
# 示例 <form action="testGetMapping" method="get">这里使用@GetMapping<form/> <form action="testPostMapping" method="post">这里使用@PostMapping<form/>
-
如果传的参数是@RequestBody ,多参或者传对象的情况下使用@PostMapping注解
@PostMapping("/getOrderList") public List<Object> getList(@RequestBody List<Object> orderList) {}
-
无参,@RequestParam和@PathVaiable的情况下使用GetMapping
@gettMapping("/test") public ModelAndView test16(@RequestParam("id")Long id){}
@gettMapping("/test/{id}") public ModelAndView (@PathVaiable("name") Long id){}
本质上还是Get和Post请求的区别
GET和POST两种方法都是将数据送到服务器
若符合下列任一情况,则用POST方法:
- 请求的结果有持续性的副作用,例如,数据库内添加新的数据行。
- 若使用GET方法,则表单上收集的数据可能让URL过长。
- 要传送的数据不是采用7位的ASCII编码。
若符合下列任一情况,则用GET方法:
- 请求是为了查找资源,HTML表单数据仅用来帮助搜索。
- 请求结果无持续性的副作用。
- 收集的数据及HTML表单内的输入字段名称的总长不超过1024个字符。