feign.Request.url()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(431)

本文整理了Java中feign.Request.url方法的一些代码示例,展示了Request.url的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.url方法的具体详情如下:
包路径:feign.Request
类名称:Request
方法名:url

Request.url介绍

暂无

代码示例

代码示例来源:origin: spring-cloud/spring-cloud-sleuth

  1. @Override
  2. public String url(Request request) {
  3. return request.url();
  4. }

代码示例来源:origin: spring-cloud-incubator/spring-cloud-alibaba

  1. private Request getModifyRequest(Request request) {
  2. String xid = RootContext.getXID();
  3. if (StringUtils.isEmpty(xid)) {
  4. return request;
  5. }
  6. Map<String, Collection<String>> headers = new HashMap<>();
  7. headers.putAll(request.headers());
  8. List<String> fescarXid = new ArrayList<>();
  9. fescarXid.add(xid);
  10. headers.put(RootContext.KEY_XID, fescarXid);
  11. return Request.create(request.method(), request.url(), headers, request.body(),
  12. request.charset());
  13. }

代码示例来源:origin: spring-cloud/spring-cloud-sleuth

  1. private Request modifiedRequest(Request request,
  2. Map<String, Collection<String>> headers) {
  3. String method = request.method();
  4. String url = request.url();
  5. byte[] body = request.body();
  6. Charset charset = request.charset();
  7. return Request.create(method, url, headers, body, charset);
  8. }

代码示例来源:origin: org.springframework.cloud/spring-cloud-sleuth-core

  1. @Override
  2. public String url(Request request) {
  3. return request.url();
  4. }

代码示例来源:origin: com.ofg/micro-infra-spring-base

  1. static String extractUrl(Request request) {
  2. return request.url();
  3. }

代码示例来源:origin: wso2/msf4j

  1. @Override
  2. public URI getUri() {
  3. return URI.create(request.url());
  4. }

代码示例来源:origin: com.marvinformatics.feign/feign-mock

  1. private static String buildUrl(Request request) {
  2. try {
  3. return URLDecoder.decode(request.url(), Util.UTF_8.name());
  4. } catch (UnsupportedEncodingException e) {
  5. throw new RuntimeException(e);
  6. }
  7. }

代码示例来源:origin: com.ofg/micro-infra-spring-base

  1. static String extractPath(Request request) {
  2. return URI.create(request.url()).getPath();
  3. }

代码示例来源:origin: com.netflix.feign/feign-core

  1. static FeignException errorReading(Request request, Response ignored, IOException cause) {
  2. return new FeignException(
  3. format("%s reading %s %s", cause.getMessage(), request.method(), request.url()),
  4. cause);
  5. }

代码示例来源:origin: com.netflix.feign/feign-core

  1. static FeignException errorExecuting(Request request, IOException cause) {
  2. return new RetryableException(
  3. format("%s executing %s %s", cause.getMessage(), request.method(), request.url()), cause,
  4. null);
  5. }
  6. }

代码示例来源:origin: io.github.openfeign/feign-httpclient

  1. @Override
  2. public Response execute(Request request, Request.Options options) throws IOException {
  3. HttpUriRequest httpUriRequest;
  4. try {
  5. httpUriRequest = toHttpUriRequest(request, options);
  6. } catch (URISyntaxException e) {
  7. throw new IOException("URL '" + request.url() + "' couldn't be parsed into a URI", e);
  8. }
  9. HttpResponse httpResponse = client.execute(httpUriRequest);
  10. return toFeignResponse(httpResponse, request);
  11. }

代码示例来源:origin: wso2/msf4j

  1. private Request tracePreRequest(Request request, TraceEvent traceEvent) {
  2. // set tracing headers to HTTP request
  3. Map<String, Collection<String>> traceHeaders = new HashMap<>();
  4. traceHeaders.putAll(request.headers());
  5. traceHeaders.put(TracingConstants.TRACE_ID_HEADER, Collections.singletonList(traceEvent.getTraceId()));
  6. traceHeaders.put(TracingConstants.TRACE_ORIGIN_ID_HEADER, Collections.singletonList(traceEvent.getOriginId()));
  7. // publish event to DAS
  8. TracingUtil.pushToDAS(traceEvent, dasUrl);
  9. return Request.create(request.method(), request.url(), traceHeaders, request.body(), request.charset());
  10. }

代码示例来源:origin: spring-cloud/spring-cloud-zookeeper

  1. private Request request(Request request,
  2. Map<String, Collection<String>> headers) {
  3. return Request.create(request.method(), request.url(), headers,
  4. request.body(), request.charset());
  5. }

代码示例来源:origin: org.springframework.cloud/spring-cloud-sleuth-core

  1. private Request modifiedRequest(Request request,
  2. Map<String, Collection<String>> headers) {
  3. String method = request.method();
  4. String url = request.url();
  5. byte[] body = request.body();
  6. Charset charset = request.charset();
  7. return Request.create(method, url, headers, body, charset);
  8. }

代码示例来源:origin: bbilger/jrestless

  1. @BeforeEach
  2. public void setup() throws UnsupportedEncodingException {
  3. when(feignRequest.url()).thenReturn("/");
  4. when(feignRequest.method()).thenReturn("GET");
  5. when(serviceResponse.getStatusCode()).thenReturn(200);
  6. }

代码示例来源:origin: bbilger/jrestless

  1. private static ServiceRequest toServiceRequest(feign.Request feignRequest) {
  2. return new DefaultServiceRequest(toServiceBody(feignRequest.body()), toServiceHeaders(feignRequest.headers()),
  3. URI.create(feignRequest.url()), feignRequest.method());
  4. }

代码示例来源:origin: ppdai-incubator/raptor

  1. protected void preHandle(Request request, Request.Options options) throws Exception {
  2. //设置url和method到Context中,方便其他地方取
  3. RaptorContext.getContext().putAttribute(NAME_HTTP_URI, UrlUtils.getUri(request.url()));
  4. RaptorContext.getContext().putAttribute(NAME_HTTP_METHOD, request.method());
  5. }

代码示例来源:origin: bbilger/jrestless

  1. @Test
  2. public void execute_NoRequestUrlGiven_ShouldFail() throws IOException {
  3. FeignLambdaClientImpl client = new FeignLambdaClientImpl(serviceResponse);
  4. when(feignRequest.url()).thenReturn(null);
  5. assertThrows(NullPointerException.class, () -> client.execute(feignRequest, null));
  6. }

代码示例来源:origin: forgemo/bittrex-java-client

  1. private void signRequestsIfCredentialsNotNull(Feign.Builder builder, @Nullable ApiCredentials credentials){
  2. if (credentials != null) {
  3. RequestInterceptor signAllRequests = requestTemplate -> {
  4. requestTemplate.query("apikey", credentials.getKey());
  5. requestTemplate.query("nonce", ApiKeySigningUtil.createNonce());
  6. String requestUrl = baseUrl+requestTemplate.request().url();
  7. String sign = ApiKeySigningUtil.createSign(requestUrl, credentials.getSecret());
  8. requestTemplate.header("apisign", sign);
  9. };
  10. builder.requestInterceptor(signAllRequests);
  11. }
  12. }
  13. }

代码示例来源:origin: bbilger/jrestless

  1. @Test
  2. public void execute_RequestUrlGiven_ShouldRequestWithUrl() throws IOException {
  3. FeignLambdaClientImpl client = new FeignLambdaClientImpl(serviceResponse);
  4. when(feignRequest.url()).thenReturn("/whatever?a=b&c=d");
  5. client.execute(feignRequest, null);
  6. assertEquals(URI.create("/whatever?a=b&c=d"), client.getServiceRequest().getRequestUri());
  7. }

相关文章