圖5-12展現了一個適應當前架構的API Gateway。
<?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> <parent> <groupId>com.xc</groupId> <artifactId>xcservice-springcloud</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <groupId>com.xc</groupId> <artifactId>xcservice-gateway-zuul</artifactId> <version>0.0.1-SNAPSHOT</version> <name>xcservice-gateway-zuul</name> <description>網關服務</description> <properties> <java.version>1.8</java.version> </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> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
(2)編輯配置文件。在配置文件中編寫Eureka服務實例的端口號、服務端地址等信息,如文件5-9所示。
server:
port: 8050 # 指定該Eureka實例的端口號
eureka:
instance:
prefer-ip-address: true # 是否顯示主機的IP
#instance-id: ${spring.cloud.client.ipAddress}:${server.port} #將Status中的顯示內容也以「IP:端口號」的形式顯示
client:
service-url:
defaultZone: http://localhost:8761/eureka/ # 指定Eureka服務端地址
spring:
application:
name: xcservice-gateway-zuul # 指定應用名稱
zuul:
routes:
order-serviceId: # zuul的惟一標識
path: /order/** # 須要映射的路徑
service-id: xcservice-eureka-order # Eureka中的serviceId
在上述配置信息中,zuul就是API網關服務的路由配置。其中order-serviceId爲Zuul的惟一標識,能夠任意設置名稱,但必須惟一,若是該值與service-id的名稱相同時,service-id的值能夠省略。path屬性後面的值表示須要映射的路徑,service-id後面的值爲Eureka中的serviceId,應用在運行時,全部符合映射路徑的URL都會被轉發到xcservice-eureka-order中。java
須要注意的是,Zuul的配置方式有不少,這裏只是針對本案例實現的一種方式。若是讀者想要了解更多的配置方式,能夠參考官方文檔中Zuul的配置進一步學習。spring
package com.xc.xcservicegatewayzuul; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; /** * http://localhost:8050/xcservice-eureka-order/order/1 */ @EnableZuulProxy @SpringBootApplication @EnableEurekaClient public class XcserviceGatewayZuulApplication { public static void main(String[] args) { SpringApplication.run(XcserviceGatewayZuulApplication.class, args); } }
(4)分別啓動註冊中心、服務提供者和網關服務後,註冊中心已註冊的服務如圖5-13所示。