RESTeasy Web 服务的原始值的 JSON 列表。

发布于 2024-11-26 21:55:41 字数 690 浏览 1 评论 0原文

我有一些 REST webservice 方法定义如下:

@GET
@POST
@Path("/blabla")
@Consumes({ "application/json", "application/xml" })
@Produces({ "application/json", "application/xml" })
@Wrapped
List<SomeDto> getSomething(
@QueryParam("destination") Long destId,
@QueryParam("parentsIds") List<Long> parents);

当我尝试将 JSON 数据提交为:

urlData: { destination: targetId, parentsIds: [selectedParentId, 31445] }, 

我收到异常

Unable to extract parameter from http request: javax.ws.rs.QueryParam("parentsIds") value is '31404,31445' for public abstract java.util.List

如何通过 JSON 将基元列表传递到 RESTeasy webservice ?

I have some REST webservice method defined as this:

@GET
@POST
@Path("/blabla")
@Consumes({ "application/json", "application/xml" })
@Produces({ "application/json", "application/xml" })
@Wrapped
List<SomeDto> getSomething(
@QueryParam("destination") Long destId,
@QueryParam("parentsIds") List<Long> parents);

and when I try to submit JSON data as:

urlData: { destination: targetId, parentsIds: [selectedParentId, 31445] }, 

I get an exception

Unable to extract parameter from http request: javax.ws.rs.QueryParam("parentsIds") value is '31404,31445' for public abstract java.util.List

How can I pass list of primitives via JSON to RESTeasy webservice ?

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

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

发布评论

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

评论(1

我做我的改变 2024-12-03 21:55:41

将它们作为 URL 中的单独参数传递。

例如

  <server>/restendpoint?parentId=1&parentId=2

来源:http://www.mkyong.com/webservices /jax-rs/jax-rs-queryparam-example/

Pass them as separate parameters in the URL.

e.g.

  <server>/restendpoint?parentId=1&parentId=2

Source: http://www.mkyong.com/webservices/jax-rs/jax-rs-queryparam-example/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文