您好,登錄后才能下訂單哦!
這篇文章主要講解了“Ribbon、Feign和OpenFeign的區(qū)別是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Ribbon、Feign和OpenFeign的區(qū)別是什么”吧!
Ribbon 是 Netflix開源的基于HTTP和TCP等協(xié)議負載均衡組件
Ribbon 可以用來做客戶端負載均衡,調用注冊中心的服務
Ribbon的使用需要代碼里手動調用目標服務,請參考官方示例:https://github.com/Netflix/ribbon
Feign是Spring Cloud組件中的一個輕量級RESTful的HTTP服務客戶端
Feign內置了Ribbon,用來做客戶端負載均衡,去調用服務注冊中心的服務。
Feign的使用方式是:使用Feign的注解定義接口,調用這個接口,就可以調用服務注冊中心的服務
Feign支持的注解和用法請參考官方文檔:https://github.com/OpenFeign/feign
Feign本身不支持Spring MVC的注解,它有一套自己的注解
OpenFeign是Spring Cloud 在Feign的基礎上支持了Spring MVC的注解,如@RequesMapping等等。
OpenFeign的@FeignClient可以解析SpringMVC的@RequestMapping注解下的接口,
并通過動態(tài)代理的方式產生實現(xiàn)類,實現(xiàn)類中做負載均衡并調用其他服務。
// user-api 子項目 public interface SysUserResource { @GetMapping("/test") Object getUser(); } // user-client 子項目 , 依賴了user-api 子項目 // 其他業(yè)務模塊可以直接依賴此模塊,通過調用接口即可完成服務的遠程調用,open-feign會對此類做動態(tài)代理 // name = "user-center" 是被調用的服務實例名稱 @FeignClient(name = "user-center") public interface SysUserResourceClient extends SysUserResource { } // user-impl 子項目 @RestController public class SysUserResourceImpl implements SysUserResource { @Override Object getUser(){ // do something } } // role-impl 子項目 , 依賴了 user-client 子項目 @RestController public class SysRoleResourceImpl implements SysRoleResource { @Resource private SysUserResource sysUserResource; @Override Object test(){ sysUserResource.getUser(); } }
需要注意,@RequesMapping不能在類名上與@FeignClient同時使用
Feign是聲明式的web service客戶端,它讓微服務之間的調用變得更簡單了,類似controller調用service。Spring Cloud集成了Ribbon和Eureka,可在使用Feign時提供負載均衡的http客戶端。
之前已經創(chuàng)建好了用戶,訂單,商品微服務,這三個微服務是互相隔離的,那么微服務和微服務之間如何互相調用呢,顯然三個微服務都可以采用http通信,也就是restTemplate進行互相訪問,但是這種方式對參數(shù)傳遞和使用都不是很方便,所以棄用此方式。
采用feign進行服務之間的調用,可以簡化調用流程,真正感覺到是在同一個項目中調用另一個類的方法的歡快感,類似controller調用service。
Feign旨在使編寫Java Http客戶端變得更容易。 前面在使用Ribbon+RestTemplate時,利用RestTemplate對http請求的封裝處理,形成了一套模版化的調用方法。但是在實際開發(fā)中,由于對服務依賴的調用可能不止一處,往往一個接口會被多處調用,所以通常都會針對每個微服務自行封裝一些客戶端類來包裝這些依賴服務的調用。所以,F(xiàn)eign在此基礎上做了進一步封裝,由他來幫助我們定義和實現(xiàn)依賴服務接口的定義。在Feign的實現(xiàn)下,我們只需創(chuàng)建一個接口并使用注解的方式來配置它(以前是Dao接口上面標注Mapper注解,現(xiàn)在是一個微服務接口上面標注一個Feign注解即可),即可完成對服務提供方的接口綁定,簡化了使用Spring cloud Ribbon時,自動封裝服務調用客戶端的開發(fā)量。
1新建cloud-consumer-order80-fegin 2POM
<?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>cloud1000</artifactId> <groupId>com.zs.springcloud</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cloud-consumer-order80-feign</artifactId> <!--openfeign--> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <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> <dependency> <groupId>com.zs.springcloud</groupId> <artifactId>cloud-api-commons</artifactId> <version>1.0-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies> </project>
3YAML
server: port: 80 eureka: client: register-with-eureka: false service-url: defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka
4主啟動類
@SpringBootApplication @EnableFeignClients public class OrderMain80Feign { public static void main(String[] args) { SpringApplication.run(OrderMain80Feign.class, args); } }
5業(yè)務類
@Component @FeignClient(value = "CLOUD-PAYMENT-SERVICE") public interface PaymentFeignService { @GetMapping(value = "/payment/get/{id}") public CommonResult<?> getPaymentById(@PathVariable("id") Long id); }
@RestController public class OrderFeignController { @Autowired private PaymentFeignService paymentFeignService; @GetMapping(value = "/consumer/payment/get/{id}") public CommonResult<?> getPaymentById(@PathVariable("id") Long id) { return paymentFeignService.getPaymentById(id); } }
3.1服務提供方8001故意寫暫停程序
@GetMapping(value = "/payment/feign/timeout") public String paymentFeignTimeout(){ try { TimeUnit.SECONDS.sleep(3); }catch (Exception e) {e.printStackTrace();} return serverPort; }
3.2服務消費方80添加超時方法PaymentFeignService
@GetMapping(value = "/payment/feign/timeout") public String paymentFeignTimeout();
3.3服務消費方80添加超時方法OrderFeignController
@GetMapping(value = "/consumer/payment/feign/timeout") public String paymentFeignTimeout(){ return paymentFeignService.paymentFeignTimeout(); }
3.4測試
http://localhost/consumer/payment/feign/timeout
3.5YML文件里需要開啟OpenFeign客戶端超時控制
ribbon: #根 ReadTimeout: 5000 ConnectTimeout: 5000
@Configuration public class FeignConfig { @Bean Logger.Level feignLoggerLevel(){ return Logger.Level.FULL; } }
logging: level: com.zs.springcloud.service.PaymentFeignService: debug
感謝各位的閱讀,以上就是“Ribbon、Feign和OpenFeign的區(qū)別是什么”的內容了,經過本文的學習后,相信大家對Ribbon、Feign和OpenFeign的區(qū)別是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。