如何使用restclient来发送post请求参数

 我来答
就烦条0o
2016-03-21 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46492
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部
运行 restclient ,点选Method选项卡的“POST”方法。然后选择Body选项卡,下下拉列表中选择”String
body“的选项,配置上 application/x-www-form-urlencoded;charset=UTF-8
。再出现的body里面写入字符串,也就是你的请求条件,如:query=xpsF

这样就可以传递post的参数了。

java代码如下:springmvc写的

Java代码
@RequestMapping(value = "/test", method = { RequestMethod.GET,
RequestMethod.POST })
public void test(HttpServletResponse response, @RequestBody String message) {
这里的:@RequestBody String message
LOGGER.debug(String.format("receive message %s", message));
Map<String, String> map = Maps.newHashMap();

try {
map.put("result", message);
Tools.printToJson(JSON.toJSONString(map), response);
} catch (Exception e) {
LOGGER.error(e.getMessage(), e);
}
}

如果传递的是一个对象给springmvc,如(代码不全):

Java代码
public class EntitySubscribe {
private Long entityId;
private String entityCode;
private String entityName;
private String teamCode;
private SubscribeUsesEnum subscribeUsesEnum;
private Date gmtCreate;
private Date gmtModify;
private Long flowId;
private OnOffEnum state;

private String reason;
private List<Integer> uses;
}

mvc代码:

Java代码
@ResponseBody
@RequestMapping(value = "/subscribeEntity", method = { RequestMethod.POST })
public AjaxResult subscribeEntity(@RequestBody EntitySubscribe entitySubscribe, @CookieValue(
value = Const.COOKIE_USER_KEY, required = false) String userId) {
LOGGER.debug(this.getClass().getName() + "#subscribeEntity");

long entityId = entitySubscribe.getEntityId();
String teamCode = entitySubscribe.getTeamCode();
String subscribeUses = Joiner.on(",").skipNulls().join(entitySubscribe.getUses());
String reason = entitySubscribe.getReason();

Preconditions.checkArgument(StringUtils.isNotBlank(teamCode));
Preconditions.checkArgument(StringUtils.isNotBlank(subscribeUses));
Preconditions.checkArgument(StringUtils.isNotBlank(reason));
Preconditions.checkArgument(StringUtils.isNotBlank(userId));
return entitySubscribeService.subscribeEntity(entityId, teamCode, subscribeUses, reason, userId);
}

使用restclient的请求为 :POST

String body 为: application/json; charset=UTF-8

body内容为:{"entityId":343,"reason":"for test测试","teamCode":"cdc","uses":[1,2,3]}

这样后台就能收到对象了。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式