javascript
SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)
在上一篇文章,講了服務(wù)的注冊和發(fā)現(xiàn)。在服務(wù)架構(gòu)中,業(yè)務(wù)都會被拆分成一個獨立的服務(wù),服務(wù)與服務(wù)的通訊是基于http restful的。spring cloud有兩種調(diào)用方式,一種是ribbon+restTemplate,另一種是feign。在這一篇文章首先講解下基于ribbon+restTemplate。
一、ribbon簡介
Ribbon is a client side load balancer which gives you a lot of control over the behaviour of HTTP and TCP clients. Feign already uses Ribbon, so if you are using @FeignClient then this section also applies.
—–摘自官網(wǎng)
ribbon是一個負(fù)載均衡客戶端,可以很好的控制http和tcp的一些行為。Feign也用到ribbon,當(dāng)你使用@ FeignClient,ribbon自動被應(yīng)用。
ribbon 已經(jīng)默認(rèn)實現(xiàn)了這些配置bean:
-
IClientConfig ribbonClientConfig: DefaultClientConfigImpl
-
IRule ribbonRule: ZoneAvoidanceRule
-
IPing ribbonPing: NoOpPing
-
ServerList ribbonServerList: ConfigurationBasedServerList
-
ServerListFilter ribbonServerListFilter: ZonePreferenceServerListFilter
-
ILoadBalancer ribbonLoadBalancer: ZoneAwareLoadBalancer
二、準(zhǔn)備工作
基于上一節(jié)的工程,啟動eureka-server 工程;啟動service-hi工程,它的端口為8762;新建一個service-hi工程,并把它的配置文件的端口改為8763,并啟動它,這時你會發(fā)現(xiàn):service-hi在eureka-server注冊了2個,這就相當(dāng)于一個小的集群。訪問localhost:8761如圖所示:
三、建一個服務(wù)消費者
重新新建一個spring-boot工程,取名為:service-ribbon;
它的pom.xml文件如下:
向服務(wù)注冊中心注冊一個新的服務(wù),這時service-ribbon既是服務(wù)提供者,也是服務(wù)消費者。配置文件application.yml如下:
eureka:client:serviceUrl:defaultZone: http://localhost:8761/eureka/ server:port: 8764 spring:application:name: service-ribbon在工程的啟動類中,通過@EnableDiscoveryClient向服務(wù)中心注冊;并且注冊了一個bean: restTemplate;通過@ LoadBalanced注冊表明,這個restRemplate是負(fù)載均衡的。
@SpringBootApplication @EnableDiscoveryClient public class ServiceRibbonApplication {public static void main(String[] args) {SpringApplication.run(ServiceRibbonApplication.class, args);}@Bean@LoadBalancedRestTemplate restTemplate() {return new RestTemplate();}}這時我們需要測試下,建一個service類:
@Service public class HelloService {@AutowiredRestTemplate restTemplate;public String hiService(String name) {return restTemplate.getForObject("http://SERVICE-HI/hi?name="+name,String.class);}}通過restTemplate.getForObject方法,service-ribbon 就可以調(diào)用service-hi的方法了。并且在調(diào)用的工程中并之需要寫服務(wù)的名,而不是具體的ip.
寫一個controller:
/*** Created by fangzhipeng on 2017/4/6.*/ @RestController public class HelloControler {@AutowiredHelloService helloService;@RequestMapping(value = "/hi")public String hi(@RequestParam String name){return helloService.hiService(name);}}訪問http://localhost:8764/hi?name=forezp,瀏覽器交替顯示:
hi forezp,i am from port:8762
hi forezp,i am from port:8763
這說明當(dāng)我們通過調(diào)用restTemplate.getForObject(“http://SERVICE-HI/hi?name=“+name,String.class),獲取service-hi的方法時,已經(jīng)做了負(fù)載均衡,訪問了不同的端口的服務(wù)。
四、此時的架構(gòu)
- 一個服務(wù)注冊中心,eureka server,端口為8761
- service-hi工程跑了兩個副本,端口分別為8762,8763,分別向服務(wù)注冊中心注冊
- sercvice-ribbon端口為8764,向服務(wù)注冊中心注冊
- 當(dāng)sercvice-ribbon通過restTemplate調(diào)用service-hi的hi接口時,因為用ribbon進(jìn)行了負(fù)載均衡,會輪流的調(diào)用service-hi:8762和8763 兩個端口的hi接口;
總結(jié)
以上是生活随笔為你收集整理的SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SpringCloud 教程 | 第一篇
- 下一篇: SpringCloud教程 | 第三篇: