从 Restlet 请求中获取 HTTP GET 参数

2022-09-03 17:20:35

我试图弄清楚如何从 Restlet 请求对象中获取参数。

我的请求以 /customer?userId=1 的形式出现,我想获取参数以传递给我的 DAO 进行查询。

public class CustomerResource extends ServerResource
{
  @Get("xml")
  public Representation toXml() throws ResourceException, Exception
  {
      try
      {
          //get param from request
         //call DAO with parameter
      }
      catch(Exception e)
      {
          throw e;
      }
  }
}

答案 1

我想通了...

public class CustomerResource extends ServerResource
{
  @Get("xml")
  public Representation toXml() throws ResourceException, Exception
  {
      try
      {
          //get param from request
          getQuery().getValues("userId")
         //call DAO with parameter
      }
      catch(Exception e)
      {
          throw e;
      }
  }
}

答案 2

请不要说有一个快捷方式:

String paramValue = getQueryValue("userId");

希望它能帮助你。