您好,登錄后才能下訂單哦!
這篇文章主要介紹“Spring Cloud Gateway如何替代zuul作為API網關”,在日常操作中,相信很多人在Spring Cloud Gateway如何替代zuul作為API網關問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring Cloud Gateway如何替代zuul作為API網關”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
特別提醒:Spring Cloud Finchley版本中,即使你引入了spring-cloud-starter-netflix-zuul,也不是2.0版本的zuul
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-zuul</artifactId> </dependency>
我們的介紹分為3個部分, 第一,pom文件,第二項目的基本架構,第三源碼和截圖。
因為使用Eureka作為服務注冊和發(fā)現(xiàn),因此在pom中引入了eureka,各位可根據(jù)自己的實際情況修改。
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.yq</groupId> <artifactId>GatewayDemo</artifactId> <version>1.0-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> <relativePath/> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Finchley.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</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-actuator</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-hystrix --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-hystrix</artifactId> </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> <!-- fastjson--> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.1.33</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.5</version> </dependency> </dependencies> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
總共有3個項目,
第一個項目是eureka 注冊中心,非常簡單,基本就一個Application類。 端口7700
第二個項目是User service,也非常簡單提供兩個rest api,為了簡略不連接數(shù)據(jù)庫,直接在內存中生成一組數(shù)據(jù)。端口6601
第三個項目就是我們的網關。端口6604
目前項目中集成websocket服務配置,本文暫不介紹可直接忽略。
網關的主代碼
package com.yq; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.cloud.client.SpringCloudApplication; import org.springframework.cloud.gateway.route.RouteLocator; import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder; import org.springframework.context.annotation.Bean; import org.springframework.web.reactive.function.BodyInserters; import org.springframework.web.reactive.function.server.RequestPredicates; import org.springframework.web.reactive.function.server.RouterFunction; import org.springframework.web.reactive.function.server.RouterFunctions; import org.springframework.web.reactive.function.server.ServerResponse; @SpringCloudApplication public class APIGatewayApplication { private static final Logger logger = LoggerFactory.getLogger(APIGatewayApplication.class); @Bean public RouteLocator customRouteLocator(RouteLocatorBuilder builder) { return builder.routes() .route(r -> r.path("/baidu") .uri("http://baidu.com:80/") ) .route("websocket_route", r -> r.path("/apitopic1/**") .uri("ws://127.0.0.1:6605")) .route(r -> r.path("/userapi3/**") .filters(f -> f.addResponseHeader("X-AnotherHeader", "testapi3")) .uri("lb://user-service/") ) .build(); } public static void main(String[] args) { SpringApplication.run(APIGatewayApplication.class, args); logger.info(" Start APIGatewayApplication Done"); } }
網關的配置文件application.yml
server: port: 6604 #服務名 spring: application: name: gateway-service cloud: gateway: filter: remove-non-proxy-headers: headers: - dummy routes: - id: apiuser # 重點!/info必須使用http進行轉發(fā),lb代表從注冊中心獲取服務 uri: lb://user-service predicates: # 重點!轉發(fā)該路徑!,/userapi/**, - Path=/userapi/** # http://localhost:6601/userapi/user/users/2, 必須加上StripPrefix=1,否則訪問服務時會帶上userapi #而不是我們期望的去掉userapi,只保留**部分 filters: - StripPrefix=1 - id: api2user uri: lb://user-service predicates: - Path=/userapi2/** filters: - StripPrefix=1 eureka: client: serviceUrl: defaultZone: http://localhost:7700/eureka/
我們簡要分析分析一下配置文件
id: apiuser
# 重點!/info必須使用http進行轉發(fā),lb代表從注冊中心獲取服務
uri: lb://user-service
predicates:
# 重點!轉發(fā)該路徑!,/userapi/,
- Path=/userapi/
# http://localhost:6601/userapi/user/users/2, 必須加上StripPrefix=1,否則訪問服務時會帶上userapi
#而不是我們期望的去掉userapi,只保留**部分
filters:
- StripPrefix=1
配置了一個路由apiuser, 當路徑( - Path=/userapi/**),就轉發(fā)到服務(lb://user-service),同時把路徑中的userapi這部分去掉(- StripPrefix=1)。
直接訪問User service
http://localhost:6601/user/users/2
通過網關訪問user service
http://localhost:6604/userapi/user/users/2
到此,關于“Spring Cloud Gateway如何替代zuul作為API網關”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。