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


Java HttpMethod.POST属性代码示例

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


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

示例1: getToken

public OAuth2Token getToken(String authorizationCode) {
    RestTemplate rest = new RestTemplate();
    String authBase64 = configuration.encodeCredentials("clientapp",
            "123456");

    RequestEntity<MultiValueMap<String, String>> requestEntity = new RequestEntity<>(
        configuration.getBody(authorizationCode),
        configuration.getHeader(authBase64), HttpMethod.POST,
        URI.create("http://localhost:8080/oauth/token"));

    ResponseEntity<OAuth2Token> responseEntity = rest.exchange(
            requestEntity, OAuth2Token.class);

    if (responseEntity.getStatusCode().is2xxSuccessful()) {
        return responseEntity.getBody();
    }

    throw new RuntimeException("error trying to retrieve access token");
}
 
开发者ID:PacktPublishing,项目名称:OAuth-2.0-Cookbook,代码行数:19,代码来源:AuthorizationCodeTokenService.java

示例2: testNotReady

@Test
public void testNotReady() throws IOException {
  String exceptionMessage = "System is not ready for remote calls. "
      + "When beans are making remote calls in initialization, it's better to "
      + "implement " + BootListener.class.getName() + " and do it after EventType.AFTER_REGISTRY.";

  ReferenceConfigUtils.setReady(false);
  CseClientHttpRequest client =
      new CseClientHttpRequest(URI.create("cse://app:test/"), HttpMethod.POST);

  try {
    client.execute();
    Assert.fail("must throw exception");
  } catch (IllegalStateException e) {
    Assert.assertEquals(exceptionMessage, e.getMessage());
  }
}
 
开发者ID:apache,项目名称:incubator-servicecomb-java-chassis,代码行数:17,代码来源:TestCseClientHttpRequest.java

示例3: getMethod

/**
 * Gets the HTTP method indicating the operation to perform on the resource identified in the
 * client's HTTP request. This method converts GemFire's HttpMethod enumerated value from the Link
 * into a corresponding Spring HttpMethod enumerated value.
 * <p/>
 * 
 * @return a Spring HttpMethod enumerated value indicating the operation to perform on the
 *         resource identified in the client's HTTP request.
 * @see org.apache.geode.management.internal.web.http.HttpMethod
 * @see org.apache.geode.management.internal.web.domain.Link#getMethod()
 * @see org.springframework.http.HttpMethod
 * @see org.springframework.http.HttpRequest#getMethod()
 */
@Override
public HttpMethod getMethod() {
  switch (getLink().getMethod()) {
    case DELETE:
      return HttpMethod.DELETE;
    case HEAD:
      return HttpMethod.HEAD;
    case OPTIONS:
      return HttpMethod.OPTIONS;
    case POST:
      return HttpMethod.POST;
    case PUT:
      return HttpMethod.PUT;
    case TRACE:
      return HttpMethod.TRACE;
    case GET:
    default:
      return HttpMethod.GET;
  }
}
 
开发者ID:ampool,项目名称:monarch,代码行数:33,代码来源:ClientHttpRequest.java

示例4: testNormal

@Test
public void testNormal() throws IOException {
  ServiceRegistry serviceRegistry = ServiceRegistryFactory.createLocal();
  serviceRegistry.init();
  RegistryUtils.setServiceRegistry(serviceRegistry);

  UnitTestMeta meta = new UnitTestMeta();

  CseContext.getInstance()
      .getSchemaListenerManager()
      .setSchemaListenerList(Arrays.asList(new RestEngineSchemaListener()));

  SchemaMeta schemaMeta = meta.getOrCreateSchemaMeta(SpringmvcImpl.class);
  CseContext.getInstance().getSchemaListenerManager().notifySchemaListener(schemaMeta);

  Holder<Invocation> holder = new Holder<>();
  CseClientHttpRequest client =
      new CseClientHttpRequest(URI.create("cse://app:test/" + SpringmvcImpl.class.getSimpleName() + "/bytes"),
          HttpMethod.POST) {

        /**
         * {@inheritDoc}
         */
        @Override
        protected Response doInvoke(Invocation invocation) {
          holder.value = invocation;
          return Response.ok("result");
        }
      };
  byte[] body = "abc".getBytes();
  client.setRequestBody(body);

  client.execute();

  Assert.assertArrayEquals(body, holder.value.getSwaggerArgument(0));
}
 
开发者ID:apache,项目名称:incubator-servicecomb-java-chassis,代码行数:36,代码来源:TestCseClientHttpRequest.java

示例5: httpMethod

protected HttpMethod httpMethod() {
    return HttpMethod.POST;
}
 
开发者ID:Huawei,项目名称:Server_Management_Common_eSightApi,代码行数:3,代码来源:DeleteFirmwareApi.java

示例6: httpMethod

protected HttpMethod httpMethod() {
  return HttpMethod.POST;
}
 
开发者ID:Huawei,项目名称:Server_Management_Common_eSightApi,代码行数:3,代码来源:PostFirmwareUploadApi.java

示例7: facebookPagePostAsAdmin

/**
 * Create a request for a Post as the page admin (not as the user)
 * @param linkToPost the link to post
 */
public void facebookPagePostAsAdmin(String linkToPost) {
	this.api = API_PAGE_POST_AS_ADMIN;
	this.setParameter("link", linkToPost);
	this.httpMethod = HttpMethod.POST;
}
 
开发者ID:xtianus,项目名称:yadaframework,代码行数:9,代码来源:YadaFacebookRequest.java


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