码迷,mamicode.com
首页 > 编程语言 > 详细

spring-cloud-alibaba-gateway

时间:2020-03-21 11:26:41      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:efi   ring   version   enable   under   yml   contex   scope   uri   

首先导入pom依赖

  <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-gateway</artifactId>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Greenwich.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-alibaba-dependencies</artifactId>
                <version>0.2.1.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

这儿一定要注意,不要有spring-boot-starter-web  这个依赖,否则会报错,会出现版本依赖冲突

application.yml的配置文件

 

spring:
  application:
    name: nacos-discovery-gateway-server
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
#路由规则
    gateway:
      routes:
        - id: nacos-first #nacos的服applicatiion的name
          uri: lb://nacos-first
          #下面这两个是映射规则
          #这个是拦截以/demo/开始的下面的所有路径
          predicates:
            - Path=/demo/**
#          如果没有下面这个需要在服务名为nacos-first的application.yml文件中使用servlet:context-path: /demo才可以使用
          #这个是在映射的时候去掉demo,比如你请求的是http://localhost:8081/demo/first 会给你映射为 http://localhost:8083/first 
          filters:
            - StripPrefix=1

 

主类添加注解

@EnableDiscoveryClient

gateway的集成就完成了

 

spring-cloud-alibaba-gateway

标签:efi   ring   version   enable   under   yml   contex   scope   uri   

原文地址:https://www.cnblogs.com/Web-spring/p/12537226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!