溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

feign怎么獲取請求真實(shí)目的ip地址

發(fā)布時間:2021-06-24 13:52:15 來源:億速云 閱讀:1091 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“feign怎么獲取請求真實(shí)目的ip地址”,在日常操作中,相信很多人在feign怎么獲取請求真實(shí)目的ip地址問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”feign怎么獲取請求真實(shí)目的ip地址”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

需求

最近小編的項(xiàng)目中出現(xiàn)了很多feign 調(diào)用出現(xiàn) Read Time out 的異常,但因?yàn)闆]有集成鏈路追蹤的第三方框架,查不到原因。

所以想到打印請求的ip地址,判斷是指定的服務(wù)器出現(xiàn)的問題還是所有服務(wù)器都有這個問題,但是feign 打印異常日志不會顯示目的端地址,這就很難受了沒辦法只能自己改裝下

大致想法

需要改裝肯定需要知道feign 具體請求調(diào)用的源碼,大致需要知道下面幾個問題

  • feign 集成了ribbon 如何在負(fù)載均衡之后獲取真實(shí)的ip地址

  • feign 實(shí)際請求 http 源碼在哪

  • 能否替換 feign http 請求的組件

源碼解析

之前小編有兩篇文章分析過 feign相關(guān)的源碼

自定義 feign 調(diào)用實(shí)現(xiàn) hystrix 超時、異常熔斷

Feign 集成 Hystrix實(shí)現(xiàn)不同的調(diào)用接口不同的設(shè)置

這其中有個關(guān)鍵的源碼位置在于 InvocationHandler 的 invoke 方法,在feign 組件中大致有兩個類實(shí)現(xiàn)了此接口

FeignInvocationHandler
HystrixInvocationHandler

如果 項(xiàng)目中使用了 Hystrix 那么會用到HystrixInvocationHandler那個,否則一般是FeignInvocationHandler(自定義組件的除外)

那么此時只需要在invoke 方法中打個斷點(diǎn)就行

feign怎么獲取請求真實(shí)目的ip地址

此時跟蹤到

feign.SynchronousMethodHandler#executeAndDecode
Object executeAndDecode(RequestTemplate template) throws Throwable {
    Request request = targetRequest(template);
	.......
    Response response;
    long start = System.nanoTime();
    try {
      // 真正執(zhí)行請求 
      response = client.execute(request, options);
      
      response.toBuilder().request(request).build();
    } catch (IOException e) {
      ....
      throw errorExecuting(request, e);
    }
    .....
  }

通過debug就知道這個 client 是

LoadBalancerFeignClient
org.springframework.cloud.openfeign.ribbon.LoadBalancerFeignClient#execute
public Response execute(Request request, Request.Options options) throws IOException {
		try {
			URI asUri = URI.create(request.url());
			String clientName = asUri.getHost();
			URI uriWithoutHost = cleanUrl(request.url(), clientName);
			
			// 封裝 ribbon 請求組件
			FeignLoadBalancer.RibbonRequest ribbonRequest = new FeignLoadBalancer.RibbonRequest(
					this.delegate, request, uriWithoutHost);

			IClientConfig requestConfig = getClientConfig(options, clientName);
			// 這行是關(guān)鍵
			return 
					// 獲取 FeignLoadBalancer
					lbClient(clientName)
					// 負(fù)載之后請求真實(shí)的url
					// com.netflix.client.AbstractLoadBalancerAwareClient#executeWithLoadBalancer(....)
					.executeWithLoadBalancer(ribbonRequest,requestConfig)
					.toResponse();
		}
		catch (ClientException e) {
			....
			throw new RuntimeException(e);
		}
	}
com.netflix.client.AbstractLoadBalancerAwareClient#executeWithLoadBalancer(....)
public T executeWithLoadBalancer(final S request, final IClientConfig requestConfig) throws ClientException {
        LoadBalancerCommand<T> command = buildLoadBalancerCommand(request, requestConfig);

        try {
        	// 在com.netflix.loadbalancer.reactive.LoadBalancerCommand#submit 中會根據(jù) 負(fù)載均衡算法之后獲取到真實(shí)的ip地址

            return command.submit(
                new ServerOperation<T>() {
                    @Override
                    // 傳入的server 就是真實(shí)的ip
                    public Observable<T> call(Server server) {

                        URI finalUri = reconstructURIWithServer(server, request.getUri());
                        // 路徑替換把原本 http://client-name/xxxx 地址改為 http://127.0.0.1:9090/xxxx
                        S requestForServer = (S) request.replaceUri(finalUri);
                        try {
                        	// 請求父類中的 execute 方法,也就是 上面 lbClient(clientName) 返回的 FeignLoadBalancer
                            return Observable.just(AbstractLoadBalancerAwareClient.this.execute(requestForServer, requestConfig));
                        } 
                        catch (Exception e) {
                            return Observable.error(e);
                        }
                    }
                })
                .toBlocking()
                .single();
        } catch (Exception e) {
            Throwable t = e.getCause();
            if (t instanceof ClientException) {
                throw (ClientException) t;
            } else {
                throw new ClientException(e);
            }
        }
        
    }
org.springframework.cloud.openfeign.ribbon.FeignLoadBalancer#execute
@Override
 public RibbonResponse execute(RibbonRequest request, IClientConfig configOverride)
   throws IOException {
  Request.Options options;
  .....
  // 這里的 request 就是 `org.springframework.cloud.openfeign.ribbon.LoadBalancerFeignClient#execute` 
  // 封裝的FeignLoadBalancer.RibbonRequest
  // request.client() 返回就是 feign.Client.Default
  
  Response response = request.client().execute(request.toRequest(), options);
  return new RibbonResponse(request.getUri(), response);
 }
feign.Client.Default#execute
 @Override
    public Response execute(Request request, Options options) throws IOException {
      HttpURLConnection connection = convertAndSend(request, options);
      return convertResponse(connection).toBuilder().request(request).build();
    }


這里的request 中 url 就是真實(shí)的url資源路徑了

現(xiàn)在屢屢邏輯

org.springframework.cloud.openfeign.ribbon.LoadBalancerFeignClient和feign.Client.Default

都實(shí)現(xiàn)了 feign.Client 接口,但是 LoadBalancerFeignClient 實(shí)際上調(diào)用的還是 feign.Client.Default,無非做了自己處理(負(fù)載),有些類似于靜態(tài)代理

那么上面的問題就只剩下能否替換的問題了

@Configuration
class DefaultFeignLoadBalancedConfiguration {
	@Bean
	@ConditionalOnMissingBean
	public Client feignClient(CachingSpringLoadBalancerFactory cachingFactory,
							  SpringClientFactory clientFactory) {
		return new LoadBalancerFeignClient(new Client.Default(null, null),
				cachingFactory, clientFactory);
	}
}

這就不需要我來過多解釋了,我們只需要自定義一個 LoadBalancerFeignClient 或者 實(shí)現(xiàn)Client的類就行 然后注入就行

實(shí)現(xiàn)代碼

我選擇的是 自定義實(shí)現(xiàn)一個 Client,去繼承 feign.Client.Default

@Slf4j
public class InFeignClient extends Client.Default {
    /**
     */
    public InFeignClient(SSLSocketFactory sslContextFactory, HostnameVerifier hostnameVerifier) {
        super(sslContextFactory, hostnameVerifier);
    }

    @Override
    public Response execute(Request request, Request.Options options) throws IOException {
        try {
            return super.execute(request, options);
        } catch (IOException e) {
            log.warn(" 請求 {} 異常 ======> {}", request.url(), e.getMessage());
            throw e;
        }
    }
}

然后將這個類替換

@Component
public class RestConfig {

    public CachingSpringLoadBalancerFactory cachingLBClientFactory(
            SpringClientFactory factory) {
        return new CachingSpringLoadBalancerFactory(factory);
    }

    @Bean
    public Client feignClient(SpringClientFactory clientFactory) {
        CachingSpringLoadBalancerFactory bean = cachingLBClientFactory(clientFactory);
        return new LoadBalancerFeignClient(new InFeignClient(null, null), bean, clientFactory);
    }
    
}

到此,關(guān)于“feign怎么獲取請求真實(shí)目的ip地址”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI