當前位置: 首頁>>代碼示例>>Java>>正文


Java ClientInvocation.writeRequestBody方法代碼示例

本文整理匯總了Java中org.jboss.resteasy.client.jaxrs.internal.ClientInvocation.writeRequestBody方法的典型用法代碼示例。如果您正苦於以下問題:Java ClientInvocation.writeRequestBody方法的具體用法?Java ClientInvocation.writeRequestBody怎麽用?Java ClientInvocation.writeRequestBody使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.jboss.resteasy.client.jaxrs.internal.ClientInvocation的用法示例。


在下文中一共展示了ClientInvocation.writeRequestBody方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createRequest

import org.jboss.resteasy.client.jaxrs.internal.ClientInvocation; //導入方法依賴的package包/類
private MockHttpRequest createRequest(ClientInvocation request) {
  MockHttpRequest mockRequest =
      MockHttpRequest.create(request.getMethod(), request.getUri(), baseUri);

  if (request.getEntity() != null) {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    request.getDelegatingOutputStream().setDelegate(baos);
    try {
      request.writeRequestBody(request.getEntityStream());
      baos.close();
    } catch (IOException ioe) {
      throw new RuntimeException(ioe);
    }
    mockRequest.setInputStream(new ByteArrayInputStream(baos.toByteArray()));
  }

  MultivaluedMap<String, String> requestHeaders = request.getHeaders().asMap();
  mockRequest.getMutableHeaders().putAll(requestHeaders);
  copyCookies(mockRequest, requestHeaders);

  return mockRequest;
}
 
開發者ID:tbroyer,項目名稱:jaxrs-utils,代碼行數:23,代碼來源:InProcessClientHttpEngine.java

示例2: writeRequestBodyToOutputStream

import org.jboss.resteasy.client.jaxrs.internal.ClientInvocation; //導入方法依賴的package包/類
/**
 * Creates the request OutputStream, to be sent to the end Service invoked, as a
 * <a href="http://commons.apache.org/io/api-release/org/apache/commons/io/output/DeferredFileOutputStream.html"
 * >DeferredFileOutputStream</a>.
 *
 *
 * @param request -
 * @return - DeferredFileOutputStream with the ClientRequest written out per HTTP specification.
 * @throws IOException -
 */
private DeferredFileOutputStream writeRequestBodyToOutputStream(final ClientInvocation request)
    throws IOException {
  DeferredFileOutputStream memoryManagedOutStream =
      new DeferredFileOutputStream(
          this.fileUploadInMemoryThresholdLimit * getMemoryUnitMultiplier(),
          getTempfilePrefix(), ".tmp", this.fileUploadTempFileDir);
  request.getDelegatingOutputStream().setDelegate(memoryManagedOutStream);
  request.writeRequestBody(request.getEntityStream());
  memoryManagedOutStream.close();
  return memoryManagedOutStream;
}
 
開發者ID:cerner,項目名稱:beadledom,代碼行數:22,代碼來源:ApacheHttpClient4Dot3Engine.java

示例3: createRequestBody

import org.jboss.resteasy.client.jaxrs.internal.ClientInvocation; //導入方法依賴的package包/類
private RequestBody createRequestBody(final ClientInvocation request) {
  if (request.getEntity() == null) {
    return null;
  }

  // NOTE: this will invoke WriterInterceptors which can possibly change the request,
  // so it must be done first, before reading any header.
  final Buffer buffer = new Buffer();
  try {
    request.writeRequestBody(buffer.outputStream());
  } catch (IOException e) {
    throw new RuntimeException(e);
  }

  javax.ws.rs.core.MediaType mediaType = request.getHeaders().getMediaType();
  final MediaType contentType =
      (mediaType == null) ? null : MediaType.parse(mediaType.toString());

  return new RequestBody() {
    @Override
    public long contentLength() throws IOException {
      return buffer.size();
    }

    @Override
    public MediaType contentType() {
      return contentType;
    }

    @Override
    public void writeTo(BufferedSink sink) throws IOException {
      buffer.copyTo(sink.buffer(), 0, buffer.size());
    }
  };
}
 
開發者ID:tbroyer,項目名稱:jaxrs-utils,代碼行數:36,代碼來源:OkHttpClientEngine.java


注:本文中的org.jboss.resteasy.client.jaxrs.internal.ClientInvocation.writeRequestBody方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。