0

我想在 GET 方法中获取整个查询字符串。例如,如果 uri 是

主机:端口/应用程序?param1=123¶m2=xyz¶m3=4

我想得到“param1=123¶m2=xyz¶m3=4”部分。可能吗?

谢谢。

4

2 回答 2

1

你可以得到HttpServletRequest,在那里你会找到一切。例如,在您的资源中:

public class MyResource {
  @Context
  private HttpServletRequest request;
  @GET
  public void get() {
    this.request.getQueryString();
  }
}
于 2012-09-21T15:14:05.500 回答
0

真的老了……但是:

您应该映射@Context 并按如下方式获取查询部分: .getRequestUri().getQuery()

    @POST
    @Path("/{path}")
    public Response transform(@PathParam String path, @Context UriInfo uriInfo, String inputData) {
...
        String query = uriInfo.getRequestUri().getQuery();
        System.out.println(query); // null if no query parameter is supplied
...
于 2020-08-17T17:39:40.177 回答