您好,登錄后才能下訂單哦!
SpringCloud中Ribbon和Feign組件如何使用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
Ribbon是一個客戶端的負載均衡(Load Balancer,簡稱LB)器,它提供對大量的HTTP和TCP客戶端的訪問控制。
目前主流的負載均衡方案可分成兩類:
1)集中式
即在服務的消費方和提供方之間使用獨立的LB設施,可以是硬件,如F5,也可以是軟件,如nginx,由該設施負責把訪問請求通過某種策略轉發至服務的提供方;
2)進程內
將LB邏輯集成到消費方,消費方從服務注冊中心獲取可用服務列表,然后根據指定負載均衡策略選擇合適的服務器。Ribbon就屬于該方式。
1) RoundRobinRule 輪詢 輪詢服務列表List<Server>的index,選擇index對應位置的服務。 2) RandomRule 隨機 隨機服務列表List<Server>的index,選擇index對應位置的服務。 3) RetryRule 重試 指定時間內,重試(請求)某個服務不成功達到指定次數,則不再請求該服務。
1、基本概念
Feign 是一個聲明式的 Web Service 客戶端。它的出現使開發 Web Service 客戶端變得很簡單。使用 Feign 只需要創建一個接口加上對應的注解,比如: @FeignClient 接口類注解。
2、執行流程
1) 主程序入口添加 @EnableFeignClients 注解開啟對 FeignClient 接口掃描加載。接口使用 @FeignClient注解。
2) 調用Feign 接口中的方法被時,通過JDK的代理的方式,生成具體的 RequestTemplate。
3) RequestTemplate 生成 Request請求,結合Ribbon實現服務調用負載均衡策略。
1)、模塊描述
Eureka注冊中心 node02-eureka-7001 兩個服務提供方 node02-provider-6001 node02-provider-6002 Ribbon服務調用 node02-consume-8001 Feign服務調用 node02-consume-8002
2)、依賴Eureka知識
上篇文章Eureka使用:
代碼所屬模塊:node02-consume-8001
1)、核心依賴
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-ribbon</artifactId> </dependency>
2)、配置文件
@Configuration public class LoadConfig { @Bean @LoadBalanced public RestTemplate getRestTemplate (){ return new RestTemplate() ; } @Bean public IRule getIRule (){ // 默認輪詢算法 // return new RoundRobinRule() ; // 重試算法:默認情況,訪問某個服務連續三次失敗,就不會再訪問 // return new RetryRule() ; // 隨機算法 return new RandomRule() ; } }
3)、調用方式
@RestController public class ConsumeController { @Autowired private RestTemplate restTemplate ; String server_name = "http://NODE02-PROVIDER" ; // http://localhost:8001/showInfo @RequestMapping("/showInfo") public String showInfo (){ return restTemplate.getForObject(server_name+"/getInfo",String.class) ; } }
這里的NODE02-PROVIDER就是服務提供方的配置文件。兩個服務提供方的這塊配置相同,Ribbon正基于此,實現多個服務調用的負載均衡。
spring: application: name: node02-provider
4)、提供方接口
@RequestMapping("/getInfo") public String getInfo (){ LOG.info("provider-6002"); return "success" ; }
代碼所屬模塊:node02-consume-8002
1)、核心依賴
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency>
2)、配置文件
@FeignClient(value = "NODE02-PROVIDER") public interface GetAuthorService { @RequestMapping(value = "/getAuthorInfo/{authorId}",method = RequestMethod.GET) String getAuthorInfo (@PathVariable("authorId") String authorId) ; }
3)、調用方式
@RestController public class ConsumeController { @Resource private GetAuthorService getAuthorService ; @RequestMapping(value = "/getAuthorInfo") public String getAuthorInfo () { return getAuthorService.getAuthorInfo("1") ; } }
4)、啟動類注解
// 因為包名路徑不同,需要加basePackages屬性 @EnableFeignClients(basePackages={"cloud.block.code.service"})
5)、提供方接口
@RequestMapping(value = "/getAuthorInfo/{authorId}",method = RequestMethod.GET) public String getAuthorInfo (@PathVariable("authorId") String authorId) { LOG.info("provider-6002"); return "知了一笑"+authorId ; }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。