st请求:
@PostMapping(value="/user")
url:
localhost:8088/demo/user
首先设置Header:
1.2 post请求:
@RequestMapping(value="/user/{page}/{limit}",method={RequestMethod.GET,RequestMethod.POST})
public ResMessage queryPage(@RequestBody DTO dto,@PathVariable(required=true)int page,@PathVariable(required=true)int limit)
url:
http://localhost:8088/demo/user/2/3
点击提交就可以了,
2.get请求
4.put请求、Delete请求和post请求设置一下,这里不做赘述
注:Restful风格的请求,post(增)、删(delete)、改(put)、查(get)