📅  最后修改于: 2020-11-11 05:43:39             🧑  作者: Mango
Zuul Server是一个网关应用程序,它处理所有请求并进行微服务应用程序的动态路由。 Zuul服务器也称为边缘服务器。
例如, / api / user映射到用户服务,/ api / products映射到产品服务,并且Zuul Server将请求动态路由到相应的后端应用程序。
在本章中,我们将详细介绍如何在Spring Boot中创建Zuul Server应用程序。
Zuul服务器与Spring Cloud依赖关系捆绑在一起。您可以从Spring Initializer页面https://start.spring.io/下载Spring Boot项目,然后选择Zuul Server依赖项。
在主Spring Boot应用程序上添加@EnableZuulProxy批注。 @EnableZuulProxy批注用于使您的Spring Boot应用程序充当Zuul代理服务器。
package com.tutorialspoint.zuulserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@SpringBootApplication
@EnableZuulProxy
public class ZuulserverApplication {
public static void main(String[] args) {
SpringApplication.run(ZuulserverApplication.class, args);
}
}
您将必须在我们的构建配置文件中添加Spring Cloud Starter Zuul依赖项。
Maven用户将必须在pom.xml文件中添加以下依赖项-
org.springframework.cloud
spring-cloud-starter-zuul
对于Gradle用户,在您的build.gradle文件中添加以下依赖项
compile('org.springframework.cloud:spring-cloud-starter-zuul')
对于Zuul路由,请在application.properties文件或application.yml文件中添加以下属性。
spring.application.name = zuulserver
zuul.routes.products.path = /api/demo/**
zuul.routes.products.url = http://localhost:8080/
server.port = 8111
这意味着对/ api / demo /的http调用将转发到产品服务。例如, / api / demo / products被转发到/ products 。
yaml文件用户可以使用如下所示的application.yml文件-
server:
port: 8111
spring:
application:
name: zuulserver
zuul:
routes:
products:
path: /api/demo/**
url: http://localhost:8080/
注–在通过Zuul代理进行路由之前, http:// localhost:8080 /应用程序应该已经在运行。
完整的构建配置文件如下所示。
Maven用户可以使用下面给出的pom.xml文件-
4.0.0
com.tutorialspoint
zuulserver
0.0.1-SNAPSHOT
jar
zuulserver
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.9.RELEASE
UTF-8
UTF-8
1.8
Edgware.RELEASE
org.springframework.cloud
spring-cloud-starter-zuul
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
Gradle用户可以使用下面给出的build.gradle文件-
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.tutorialspoint'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
ext {
springCloudVersion = 'Edgware.RELEASE'
}
dependencies {
compile('org.springframework.cloud:spring-cloud-starter-zuul')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
您可以创建一个可执行的JAR文件,并使用下面给出的Maven或Gradle命令运行Spring Boot应用程序-
对于Maven,您可以使用下面给出的命令-
mvn clean install
在“ BUILD SUCCESS”之后,您可以在目标目录下找到JAR文件。
对于Gradle,您可以使用下面给出的命令-
gradle clean build
在“ BUILD SUCCESSFUL”之后,您可以在build / libs目录下找到JAR文件。
现在,使用下面显示的命令运行JAR文件-
java –jar
您可以在Tomcat端口8111上找到应用程序已启动,如下所示。
现在,在Web浏览器中访问URL http:// localhost:8111 / api / demo / products ,您可以看到/ products REST Endpoint的输出,如下所示-