5

有谁知道如何在 REST Web 服务中放置多个查询参数?我用java写过。我的curl示例是这样的:

curl -X PUT http://localhost:8080/project/resources/user/directory/sub-directory?name=shareuser&type=Read -v

我的程序是:

@PUT
@Path("{user}/{directory:.+}")
public Response doshare(@PathParam("user")String name,
        @PathParam("directory")String dir,
        @QueryParam("name")String sharename,
        @QueryParam("type")String type){
    mongoDAOImpl impl=new mongoDAOImpl();
    Mongo mongo=impl.getConnection("127.0.0.1","27017");
    DB db=impl.getDataBase(mongo,"public");
    DBCollection coll=impl.getColl(db,name);
    DBCollection coll2=impl.getColl(db,"sharedb");
    shareDTO sharedto=new shareDTO();
    String authority=type.toLowerCase();
    if(authority.equals("rd")){
        sharedto.setAuthority("4");
    }else if(authority.equals("rw")){
        sharedto.setAuthority("12");
    }
    sharedto.setTargetuser(sharename);
    sharedto.setRealURI("/home/public/"+name+"/"+dir);
    sharedto.setIdentifier(name);
    sharedto.setParentURI("/home/public/"+sharename);
    boolean bool = false;
    sharefun=new sharefunction();
    if(sharefun.checksubfoldershared(coll, coll2, sharedto)){
        bool=sharefun.sharefiles(coll, coll2, sharedto);
    }else{
        System.out.println("Error");
    }
    // ...

但我只获取名称查询参数。如何获取或如何输入 curl 命令以获取所有查询参数?

4

3 回答 3

20

您的代码很好 - 问题在于您调用 curl 的方式。将包含“&”的 URL 传递给 curl 时,您必须在 URL 周围加上引号。否则,shell 会将 '&' 之后的内容解释为单独的命令。

编辑:当我将其作为评论提交时,我的文本被修改了。这是您需要做的:

curl -X PUT 'http://localhost:8080/project/resources/user/directory/sub-directory?name=shareuser&type=Read' -v
于 2011-04-26T03:49:04.140 回答
1

您是否尝试过使用 -d 选项?例如

curl -X PUT -d "name=shareuser&type=Read" http://locahost:8080/project/resources/user/directory/sub-directory -v
于 2011-04-26T06:21:42.267 回答
1

您可以尝试将这一切作为分段上传来处理(服务器端详细信息未标准化,并且您没有说明您使用的是什么框架,所以我无法提供更多线索)但我质疑您为什么拥有首先设置用户和权限(通过任何参数)。当然,您最好通过检查用户的登录凭据并使用他们以后可以更改的默认权限集来导出用户进行存储?几乎一样便宜,而且非常简单。

于 2011-04-26T06:52:39.840 回答