使用 jersey 客户端使用请求参数和请求正文执行 POST 操作

发布于 2024-12-28 20:44:11 字数 729 浏览 0 评论 0原文

我试图弄清楚如何使用 Jersey 客户端发送请求参数和 POST 操作的请求正文。

目前我知道如何单独执行这两种方式,但不知道如何一起执行。

从这里:使用 Jersey 客户端执行 POST 操作

我已经得到了请求参数:

MultivaluedMap formData = new MultivaluedMapImpl();
formData.add("name1", "val1");
formData.add("name2", "val2");
ClientResponse response = webResource.type("application/x-www-form-urlencoded").post(ClientResponse.class, formData);

对于请求主体,我可以执行以下操作:

String jsonObject ="... valid json object";
webResource.type(MediaType.APPLICATION_JSON_TYPE).post(String.class, jsonObject);

如何将请求参数与请求主体一起发布?

谢谢

I'm trying to figure how how to use the Jersey client to send both the request params and the request body of a POST operation.

Currently I know how to do it both of those way individually, but not together.

From here: Using the Jersey client to do a POST operation

I've gotten this for the request parms:

MultivaluedMap formData = new MultivaluedMapImpl();
formData.add("name1", "val1");
formData.add("name2", "val2");
ClientResponse response = webResource.type("application/x-www-form-urlencoded").post(ClientResponse.class, formData);

And for the request body I can do the following:

String jsonObject ="... valid json object";
webResource.type(MediaType.APPLICATION_JSON_TYPE).post(String.class, jsonObject);

How do I post both a request param with a request body?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一口甜 2025-01-04 20:44:11

我刚刚想通了..

webResource.queryParam("key", "value").type(MediaType.APPLICATION_JSON_TYPE).post(String.class, jsonObject);

I just figured it out..

webResource.queryParam("key", "value").type(MediaType.APPLICATION_JSON_TYPE).post(String.class, jsonObject);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文