动态查询参数

时间:2012-11-29 07:10:58

标签: rest jersey

我要求查询Param名称未修复。即。

  

/测试/添加A = B,C和; A1 = B1,C1

     

/测试/添加d = E,F和安培; C1 = D1,F1

我在一篇文章中读过使用@Context URI,HttpServlerRequest。

你能指导我如何在泽西岛实施这个吗?

1 个答案:

答案 0 :(得分:0)

您可以将UriInfo添加到您的课程中,如下所示:

public class Example {
  @Context
  UriInfo uriInfo;

  @GET
  @Path("/")
  public void get() {
    System.out.println(uriInfo.getPathParameters());
  }
}