gpt4 book ai didi

java - 从 ReSTLet 请求中获取 HTTP GET 参数

转载 作者:太空狗 更新时间:2023-10-29 23:01:18 59 4
gpt4 key购买 nike

我想弄清楚如何从 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;
}
}
}

最佳答案

我想通了....

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;
}
}
}

关于java - 从 ReSTLet 请求中获取 HTTP GET 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2773626/

59 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com