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


Java HttpMethod类代码示例

本文整理汇总了Java中io.sphere.sdk.http.HttpMethod的典型用法代码示例。如果您正苦于以下问题:Java HttpMethod类的具体用法?Java HttpMethod怎么用?Java HttpMethod使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: sendHttpGetRequest

import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
@Nonnull
public CompletionStage<HttpRequestResult> sendHttpGetRequest(String url) {
    HttpRequest request = HttpRequest.of(HttpMethod.GET, url);

    // TODO: must be injected, instead of initialization!!!
    HttpClient client = SphereClientFactory.of().createHttpClient();

    return client.execute(request)
                 .thenApplyAsync(response -> HttpRequestResult.of(request, response, null))
                 .exceptionally(throwable -> HttpRequestResult.of(request, null, throwable))
                 .whenCompleteAsync((response, throwable) -> client.close());
}
 
开发者ID:commercetools,项目名称:commercetools-payment-integration-java,代码行数:14,代码来源:PaymentConnectorHelperImpl.java

示例2: httpRequestIntent

import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
public HttpRequestIntent httpRequestIntent() {
    final JsonNode variables = getVariables();
    final String variablesPart = variables == null ? null : String.format("\"variables\": %s", Json.stringify(variables));
    final String queryPart = String.format("\"query\": \"%s\"", getQuery().replace("\n", "\\n").replace("\"", "\\\""));
    final String body = Stream.of(queryPart, variablesPart)
            .filter(Objects::nonNull)
            .collect(joining(",", "{", "}"));
    return HttpRequestIntent.of(HttpMethod.POST, "/graphql", body);
}
 
开发者ID:commercetools,项目名称:commercetools-sunrise-java,代码行数:11,代码来源:SingleGraphQLRequest.java

示例3: httpRequestIntent

import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
public HttpRequestIntent httpRequestIntent() {
    return HttpRequestIntent.of(HttpMethod.GET, "string-endpoint");
}
 
开发者ID:commercetools,项目名称:commercetools-sunrise-java-training,代码行数:5,代码来源:MySphereRequest.java


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