spring - cloud (4) spring - cloud - zuul 의 경로 게 이 트 웨 이 설정

마이크로 서비스 가 날로 증가 하고 관리 도 불편 하기 때문에 모든 서 비 스 를 집중 적 으로 관리 할 수 있 는 기능 (sevelet 와 유사 한 filter) 이 필요 합 니 다. 여기 서 같은 권한 입구 관 리 를 할 수 있 습 니 다.
새 모듈 spring - cloud - gateway
zuul 및 관련 의존 도 를 다음 과 같이 증가 합 니 다.
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.0modelVersion>

    <artifactId>spring-cloud-gatewayartifactId>
    <version>1.0-SNAPSHOTversion>
    <packaging>jarpackaging>
    <properties>
        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
        <java.version>1.8java.version>
        <file.encoding>UTF8file.encoding>
        <spring-cloud.version>Finchley.SR2spring-cloud.version>
    properties>
    <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.0.2.RELEASEversion>
    parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-openfeignartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-netflix-zuulartifactId>
        dependency>
    dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloudgroupId>
                <artifactId>spring-cloud-dependenciesartifactId>
                <version>${spring-cloud.version}version>
                <type>pomtype>
                <scope>importscope>
            dependency>
        dependencies>
    dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>
    
project>

application.properties
server.port=8886
spring.application.name=gateway-service
eureka.client.service-url.defaultZone=http://localhost:8881/eureka/

#         
zuul.routes.eureka-client.path=/eureka-client/**

#       (   ,         ,        )
#zuul.routes.lisiHello.url=http://localhost:8882/
#     id,         spring.application.name
zuul.routes.eureka-client.serviceId=eureka-client

주 방법 은 관련 주 해 를 추가 하면 application. 자바 입 니 다.
package top.littlematch.gateway;

import org.springframework.boot.SpringApplication;
import org.springframework.cloud.client.SpringCloudApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;

@SpringCloudApplication
@EnableEurekaClient
@EnableZuulProxy
public class GatewayApplication {
    public static void main(String[] args){
        SpringApplication.run(GatewayApplication.class, args);
    }
}


eureka - server, eureka - client, gateway - service 를 순서대로 시작 하여 호출 합 니 다.
http://localhost:8886/hello?name=match
브 라 우 저 반환:
hello! match
gitee 코드 주소:https://gitee.com/leftbehindmatches/spring-cloud-examples/tree/master/spring-cloud-gateway

좋은 웹페이지 즐겨찾기