<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Feign是一個宣告式WebService使用者端。使用Feign能讓編寫Web Service使用者端更加簡單。它的使用方法是定義一個服務介面然後在上面新增註解。
Feign也支援可拔插式的編碼器和解碼器。Spring Cloud對Feign進行了封裝,使其支援了Spring MVC標準註解和HttpMessageConverters。
Feign可以與Eureka和Ribbon組合使用以支援負載均衡
原始碼地址:https://github.com/spring-cloud/spring-cloud-openfeign
Feign能幹什麼
Feign旨在使編寫Java Http使用者端變得更容易。前面在使用Ribbon+RestTemplate時,利用RestTemplate對http請求的封裝處理,形成了一套模版化的呼叫方法。但是在實際開發中,由於對服務依賴的呼叫可能不止一處,往往一個介面會被多處呼叫,所以通常都會針對每個微服務自行封裝一些使用者端類來包裝這些依賴服務的呼叫。所以,Feign在此基礎上做了進一步封裝,由他來幫助我們定義和實現依賴服務介面的定義。在Feign的實現下,我們只需建立一個介面並使用註解的方式來設定它(以前是Dao介面上面標註Mapper註解,現在是一個微服務介面上面標註一個Feign註解即可),即可完成對服務提供方的介面繫結,簡化了使用Spring cloud Ribbon時,自動封裝服務呼叫使用者端的開發量。
Feign整合了Ribbon
利用Ribbon維護了Payment的服務列表資訊,並且通過輪詢實現了使用者端的負載均衡。而與Ribbon不同的是,通過feign只需要定義服務繫結介面且以宣告式的方法,優雅而簡單的實現了服務呼叫
Feign和OpenFeign兩者的區別
Feign | OpenFeign |
---|---|
Feign是Spring Cloud元件中的一個輕量級RESTful的HTTP服務使用者端 Feign內建了Ribbon,用來做使用者端負載均衡,去呼叫服務註冊中心的服務。Feign的使用方式是:使用Feign的註解定義介面,呼叫這個介面,就可以呼叫服務註冊中心的服務 | OpenFeign是Spring Cloud 在Feign的基礎上支援了SpringMVC的註解,如@RequesMapping等等。OpenFeign的@FeignClient可以解析SpringMVC的@RequestMapping註解下的介面,並通過動態代理的方式產生實現類,實現類中做負載均衡並呼叫其他服務。 |
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency> | <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> |
1、建立介面和使用註解@FeignClient
2、新建模組cloud-consumer-feign-order80
3、修改pom.xml依賴檔案
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>springcloud2022</artifactId> <groupId>com.zcl.springcloud</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cloud-consumer-feign-order80</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <!--openfeign--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <!--eureka client--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <!-- 引入自己定義的api通用包,可以使用Payment支付Entity --> <dependency> <groupId>com.zcl.springcloud</groupId> <artifactId>cloud-api-commons</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <!--web--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <!--一般基礎通用設定--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
4、新增YAML組態檔
不將模組註冊到Eureka服務中心
server: port: 80 eureka: client: register-with-eureka: false service-url: defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/
5、建立啟動類
既然使用的是
OpenFeign
那必須使用@EnableFeignClients
註解進行開啟
package com.zcl.springcloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.openfeign.EnableFeignClients; /** * 描述:Feign專案啟動類 * * @author zhong * @date 2022-09-19 13:32 */ @SpringBootApplication @EnableFeignClients public class OrderFeignMain80 { public static void main(String[] args) { SpringApplication.run(OrderFeignMain80.class, args); } }
6、業務類
業務邏輯介面+
@FeignClient
註解完成服務呼叫,找指定微服務的範例和呼叫地址,存取的就是8001對外暴露的地址主啟動類上必須使用
@EnableFeignClients
註解進行啟用開啟
package com.zcl.springcloud.service; import com.zcl.springcloud.entities.CommonResult; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; /** * 描述:Feign業務測試介面 * * @author zhong * @date 2022-09-19 13:35 */ @Component @FeignClient(value = "CLOUD-PAYMENT-SERVICE") public interface PaymentFeignService { /** * 根據id去呼叫 * @param id * @return */ @GetMapping("/payment/get/{id}") CommonResult getPaymentById(@PathVariable("id") Long id); }
上面定義的介面其實就是
服務提供者
對外暴露的介面
7、建立控制器
package com.zcl.springcloud.controller; import com.zcl.springcloud.entities.CommonResult; import com.zcl.springcloud.entities.Payment; import com.zcl.springcloud.service.PaymentFeignService; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; /** * 描述:測試控制器 * * @author zhong * @date 2022-09-19 14:11 */ @Slf4j @RestController public class OrderFeignController { /** * 注入Feign業務介面 */ @Resource private PaymentFeignService paymentFeignService; /** * 測試呼叫服務介面 * @param id * @return */ @GetMapping("/consumer/payment/get/{id}") public CommonResult<Payment> getPayment(@PathVariable("id") Long id) { // 呼叫服務介面 return paymentFeignService.getPaymentById(id); } }
8、啟動專案測試
http://localhost/consumer/payment/get/1
多請求兩回會發現一樣的有輪詢負載均衡的效果
Feign自帶負載均衡設定項
{ "code": 200, "message": "查詢成功,當前提供者埠號為:8002", "data": { "id": 1, "serial": "1515154151515" } }
1、在8001提供者上新增一個新的控制器
/** * 測試Feign程式存取停止三秒 * @return */ @GetMapping("/feign/timeout") public String paymentFeignTimeOut(){ try { // 程式停止三秒 TimeUnit.SECONDS.sleep(3); } catch (InterruptedException e) { e.printStackTrace(); } return serverPort; }
2、在消費者Feign80上新增介面
package com.zcl.springcloud.service; import com.zcl.springcloud.entities.CommonResult; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; /** * 描述:Feign業務測試介面 * * @author zhong * @date 2022-09-19 13:35 */ @Component @FeignClient(value = "CLOUD-PAYMENT-SERVICE") public interface PaymentFeignService { /** * 測試請求三秒不響應介面 * @return */ @GetMapping("/payment/feign/timeout") String paymentFeignTimeOut(); }
3、在FeignOrder80消費者控制器上新增介面存取
/** * 注入Feign業務介面 */ @Resource private PaymentFeignService paymentFeignService; /** * 測試超時 * @return */ @GetMapping("/payment/feign/timeout") public String paymentFeignTimeOut() { return paymentFeignService.paymentFeignTimeOut(); }
4、啟動專案測試
預設連線是1秒鐘,程式設定了三秒導致連線超時
後端超時報錯
5、在YAML組態檔中開啟超時連線
設定組態檔下面的
ribbon
連線時間後等待三秒存取正常不會再報錯
server: port: 80 eureka: client: register-with-eureka: false service-url: defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/ #設定feign使用者端超時時間(OpenFeign預設支援ribbon) ribbon: #指的是建立連線所用的時間,適用於網路狀況正常的情況下,兩端連線所用的時間 ReadTimeout: 5000 #指的是建立連線後從伺服器讀取到可用資源所用的時間 ConnectTimeout: 5000
Feign 提供了紀錄檔列印功能,我們可以通過設定來調整紀錄檔級別,從而瞭解 Feign 中 Http 請求的細節。
就是對Feign介面的呼叫情況進行監控和輸出
1、日記級別
NONE:預設的,不顯示任何紀錄檔;
BASIC:僅記錄請求方法、URL、響應狀態碼及執行時間;
HEADERS:除了 BASIC 中定義的資訊之外,還有請求和響應的頭資訊;
FULL:除了 HEADERS 中定義的資訊之外,還有請求和響應的正文及後設資料。
2、設定日記級別設定類
注意不要導錯包
返回的日記級別對應上面的4個
package com.zcl.springcloud.config; import feign.Logger; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /** * 描述:Feign日記級別設定 * * @author zhong * @date 2022-09-19 15:27 */ @Configuration public class FeignConfig { @Bean Logger.Level feignLoggerLevel() { return Logger.Level.FULL; } }
3、YAML組態檔開啟日記資訊列印
logging: level: # feign紀錄檔以什麼級別監控哪個介面 com.zcl.springcloud.service.PaymentFeignService: debug
啟動羨慕測試輸出內容
到此這篇關於OpenFeign服務介面呼叫的文章就介紹到這了,更多相關OpenFeign介面呼叫內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45