javax.ws.rs.client.webtarget可选queryparam

kzipqqlq  于 2021-06-30  发布在  Java
关注(0)|答案(0)|浏览(259)

我正在调用一个支持一堆可选查询参数的下游。
同样地,我有时只想添加那些queryparams,但是这样做会有点烦人

public Map<Subject, Role> getGrantsForResource(
        final String propertyId,
        final boolean filterByRole
) {
    final WebTarget resource;
    if (filterByRole) {
        resource = ramClient
                .path("/v1/resource/{resource}/grants")
                .resolveTemplate("resource", "resource.property." + propertyId)
                .queryParam("role", "role.23"); //add queryparam
    } else {
        resource = ramClient
                .path("/v1/resource/{resource}/grants")
                .resolveTemplate("resource", "resource.property." + propertyId);
                //don't add queryparam
    }

如果有多个可选的queryparam,则会导致组合爆炸。
总是添加queryparam,但在不需要时将值设为空字符串或null也不起作用-添加值为null的queryparam会导致npe,发送空字符串会导致添加的查询参数,但没有值。
我想出了这个解决办法

public Map<Subject, Role> getGrantsForResource(
        final String propertyId,
        final Map<String, String> queryParams
) {

    WebTarget resource = ramClient
            .path("/v1/resource/{resource}/grants")
            .resolveTemplate("resource", "resource.property." + propertyId);

    for (Map.Entry<String, String> e : queryParams.entrySet()) {
        if (e.getValue() == null) {
            //don't add queryparam
        } else {
            resource = resource.queryParam(e.getKey(), e.getValue());
        }
    }

但肯定有更好的方法吗?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题