您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Spring Feign超時(shí)如何設(shè)置”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Spring Feign超時(shí)如何設(shè)置”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。
Feign 底層依賴于 Ribbon 實(shí)現(xiàn)負(fù)載均衡和遠(yuǎn)程調(diào)用。
Ribbon默認(rèn)1秒超時(shí)。
超時(shí)配置:
ribbon:
ConnectTimeout: 1000 #連接超時(shí)時(shí)間,毫秒
ReadTimeout: 1000 #邏輯處理超時(shí)時(shí)間,毫秒
在feign-consumer中設(shè)置超時(shí)時(shí)間
server:
port: 9000eureka:
instance:
hostname: localhost # 主機(jī)名
client:
service-url:
defaultZone: http://localhost:8761/eureka
spring:
application:
name: feign-consumer # 設(shè)置當(dāng)前應(yīng)用的名稱。將來會(huì)在eureka中Application顯示。將來需要使用該名稱來獲取路徑#設(shè)置Ribbon的超時(shí)時(shí)間
ribbon:
ConnectTimeout: 1000 #鏈接超時(shí)時(shí)間,默認(rèn)1s
ReadTimeout: 3000 #邏輯處理的超時(shí)時(shí)間 默認(rèn)1s
provider超時(shí)2s測試
Goods goods = goodsservice.findOne(id); //當(dāng)前現(xiàn)場睡眠2秒 try { Thread.sleep( millis: 2000); }catch (InterruptedException e) { e.printStackTrace(); //java.net.SocketTimeoutException: Read timed out } goods.setTitle(goods.getTitle() + ":" + port);//將端口號(hào),設(shè)置
Feign 只能記錄 debug 級(jí)別的日志信息。
logging:
level:
com.itheima: debug //包名
定義Feign日志級(jí)別Bean
@Bean Logger.Level feignLoggerLevel() { return Logger.Level.FULL; }
啟用該Bean:
@FeignClient(configuration = XxxConfig.class)
#設(shè)置當(dāng)前的日志級(jí)別 debug,feign 只支持記錄debug級(jí)別的日志
logging:
level:
com.itheima: debug
package com.itheima.consumer.config; import feign.Logger; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class FeignLogConfig { /** * NONE, 不記錄 * BASIC, 記錄基本的請求行,響應(yīng)狀態(tài)碼數(shù)據(jù) * HEADERS, 記錄基本的請求行,響應(yīng)狀態(tài)碼數(shù)據(jù),記錄響應(yīng)頭信息 * FULL 記錄完整的請求,響應(yīng)數(shù)據(jù) * @return */ @Bean public Logger.Level level(){ return Logger.Level.FULL; } }
package com.itheima.consumer.feign; import com.itheima.consumer.config.FeignLogConfig; import com.itheima.consumer.domain.Goods; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; /** * feign聲明式接口 發(fā)錢遠(yuǎn)程調(diào)用的 * String url = "http://FEIGN-PROVIDER/goods/findOne/"+id; * // 3. 調(diào)用方法 * Goods goods = restTemplate.getForObject(url, Goods.class); * * 1 定義接口 * 2 接口上添加注解 @FeignClient 設(shè)置value屬性為服務(wù)提供的 應(yīng)用名稱 * 3 編寫調(diào)用接口,接口的聲明規(guī)則和提供方接口保持一致 * 4 注入該接口對象,調(diào)用接口方法完成遠(yuǎn)程調(diào)用 */ @FeignClient(value = "FEIGN-PROVIDER",configuration = FeignLogConfig.class) public interface GoodsFeignClient { @GetMapping("/goods/findOne/{id}") public Goods findGoodsById(@PathVariable("id") int id); }
讀到這里,這篇“Spring Feign超時(shí)如何設(shè)置”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(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)容。