当前位置: 首页>>代码示例>>Java>>正文


Java HttpMethod.OPTIONS属性代码示例

本文整理汇总了Java中com.mashape.unirest.http.HttpMethod.OPTIONS属性的典型用法代码示例。如果您正苦于以下问题:Java HttpMethod.OPTIONS属性的具体用法?Java HttpMethod.OPTIONS怎么用?Java HttpMethod.OPTIONS使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.mashape.unirest.http.HttpMethod的用法示例。


在下文中一共展示了HttpMethod.OPTIONS属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: restPath

private static String restPath(Method method, HttpMethod httpMethod) {
    if (httpMethod == HttpMethod.OPTIONS) {
        return "";
    }
    String fromPath = getPathFromAnnotation(method);

    if (fromPath == null || fromPath.isEmpty()) {
        fromPath = List.of(prefixesMap.get(httpMethod))
                .filter(prefix -> method.getName().toLowerCase().startsWith(prefix))
                .map(prefix -> method.getName().replace(prefix, "").toLowerCase())
                .getOrElse("");

        //if still empty
        if (fromPath.isEmpty()) {
            fromPath = method.getName();
        }
    }

    if (httpMethod == HttpMethod.GET) {
        if (fromPath == null || fromPath.isEmpty()) {
            fromPath = javaslang.collection.List.of(method.getParameters())
                    .map(p -> "{" + p.getName() + "}").getOrElse("");
        }
    }

    return fromPath;
}
 
开发者ID:drinkwater-io,项目名称:drinkwater-java,代码行数:27,代码来源:RestHelper.java

示例2: httpOptions

public static HttpTestRequest httpOptions(String request, Map<String, String> headers) {
    return new HttpTestRequest(HttpMethod.OPTIONS, request, null, HttpTestRequest.ResponseType.String, null, headers);
}
 
开发者ID:drinkwater-io,项目名称:drinkwater-java,代码行数:3,代码来源:HttpUnitTest.java


注:本文中的com.mashape.unirest.http.HttpMethod.OPTIONS属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。