postman使用教程

Posted 南开小巷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman使用教程相关的知识,希望对你有一定的参考价值。

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)

以上是关于postman使用教程的主要内容,如果未能解决你的问题,请参考以下文章

postman使用教程

postman使用教程

Postman使用教程学习笔记

PostMan使用教程

Postman工具介绍以及使用方法教程

postman使用教程