【SpringCloud】(十五):Zuul的基本應用,反向代理和負載均衡
Router and Filter: Zuul。 Zuul is a JVM based router and server side load balancer by Netflix。
Zuul是一個路由器,而且是一個Server端的負載均衡器,Zuul預設的會反向代理到所有註冊到Eureka上的服務。
Zuul實現代理。
啟動類
package com.dynamic.cloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@SpringBootApplication
@EnableZuulProxy
public class ZuulApplication
{
public static void main( String[] args )
{
SpringApplication.run(ZuulApplication.class, args);
}
}
後面的程式碼中,啟動類不會變化。
@EnableZuulProxy,是一個組合註解,@EnableCircuitBreaker,@EnableDiscoveryClient。因為它有@EnableDiscoveryClient,所以可以註冊到Eureka上。
POM.xml中加入依賴
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>microservice-gateway-zuul</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>com.dynamic.cloud</groupId>
<artifactId>microservice-spring-cloud</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zuul</artifactId>
</dependency>
</dependencies>
</project>
配置檔案application.yml
spring:
application:
name: microservice-gateway-zuul
server:
port: 8040
eureka:
client:
service-url:
defaultZone: http://user:pass123@localhost:8761/eureka #把Eureka註冊到那個Eureka
instance:
prefer-ip-address: true
instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000
zuul:
ignored-services: microservice-comsumer-movie-ribbon-withhystrix
routes:
microservice-provider-user: /user/**
zuul:
ignored-services: microservice-comsumer-movie-ribbon-withhystrix ,不允許代理本服務
routes:
microservice-provider-user: /user/** ,可以使用user替換microservice-provider-user訪問路徑。
只想反向代理一個微服務,不想反向代理其他的微服務
第一種:所有的服務都ignored,只有配置的才反向代理
第二種:在ignored上配置,不代理的服務。
啟動Eureka,使用者服務,Zuul服務
已經完成了簡單的Zuul的例項
1.指定path+serviceid
zuul:
routes:
abc: #讓zuul方向代理微服務,路徑是/user-path abc只要是唯一的就行,可隨意寫
path: /user-path/** #封層匹配
serviceId: microservice-provider-user
2.指定Path+url
zuul:
routes:
abc: #讓zuul方向代理微服務,路徑是/user-path abc只要是唯一的就行,可隨意寫
path: /user-path/** #封層匹配
#serviceId: microservice-provider-user
url: http://localhost:7900/
使用path + url不能實現服務提供者的負載均衡。
3.解決path + url 實現負載均衡
zuul:
routes:
abc: #讓zuul方向代理微服務,路徑是/user-path abc只要是唯一的就行,可隨意寫
path: /user-path/** #封層匹配
serviceId: microservice-provider-user
ribbon:
eureka:
enabled: false
microservice-provider-user: #這是Ribbon要請求的微服務的ServiceId
ribbon:
listOfServers: http://localhost:7900,http://localhost:7901
Zuul是API 閘道器解決微服問題的實現,反向代理,預設情況下,可以代理所有註冊在Eureka上面的服務,實現在服務端的負載均衡。
相關文章
- 代理與反向代理、負載均衡和快取負載快取
- 【Nginx】Nginx反向代理和負載均衡部署Nginx負載
- Nginx入門(2)反向代理和負載均衡Nginx負載
- docker下nginx反向代理和負載均衡配置DockerNginx負載
- 秒懂負載均衡與反向代理負載
- nginx詳解反向代理負載均衡Nginx負載
- nginx反向代理和負載均衡策略實戰案例Nginx負載
- Nginx反向代理負載均衡的容器化部署Nginx負載
- Nginx負載均衡反向代理伺服器Nginx負載伺服器
- [原創]Nginx反向代理及負載均衡Nginx負載
- 介紹下Nginx 反向代理與負載均衡Nginx負載
- nginx+tomcat反向代理負載均衡配置NginxTomcat負載
- nginx配置web服務|反向代理|負載均衡NginxWeb負載
- 代理和負載均衡概述負載
- Nginx伺服器的使用與反向代理負載均衡Nginx伺服器負載
- nginx面試題-nginx負載均衡與正反向代理Nginx面試題負載
- nginx+tomcat實現反向代理+負載均衡NginxTomcat負載
- Nginx搭建反向代理負載均衡和web快取伺服器Nginx負載Web快取伺服器
- Apache配置反向代理、負載均衡和叢集(mod_proxy方式)Apache負載
- Nginx 全模組安裝及匹配方式、反向代理和負載均衡配置Nginx負載
- centos7下配置nginx反向代理負載均衡叢集CentOSNginx負載
- Nginx反向代理+負載均衡簡單實現(https方式)Nginx負載HTTP
- nginx反向代理負載均衡與動靜頁面分離Nginx負載
- nginx之 nginx-1.9.7 + tomcat-8.5.15 反向代理+應用負載均衡 安裝配置NginxTomcat負載
- nginx反向大理和負載均衡以及高可用Nginx負載
- CDN和負載均衡的基本瞭解負載
- 在windows環境下 nginx + .net core 3.1 實現反向代理和負載均衡WindowsNginx負載
- 在Linux中,nginx反向代理和負載均衡實現原理是什麼?LinuxNginx負載
- 誰說前端不需要懂-Nginx反向代理與負載均衡前端Nginx負載
- 如何使用 Weave 以及 Docker 搭建 Nginx 反向代理/負載均衡伺服器DockerNginx負載伺服器
- 四. SpringCloud負載均衡與呼叫SpringGCCloud負載
- 【SpringCloud】之Ribbon負載均衡SpringGCCloud負載
- nginx反向代理負載均衡帶你突破單臺伺服器的瓶頸Nginx負載伺服器
- 圖解Nginx,系統架構演變 + Nginx反向代理與負載均衡圖解Nginx架構負載
- 使用Rancher建立負載均衡的容器應用負載
- 全棧必備——負載均衡的應用全棧負載
- k8s給多個外部靜態IP作負載均衡、反向代理K8S負載
- SpringCloud 服務負載均衡和呼叫 Ribbon、OpenFeignSpringGCCloud負載