博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
011-spring cloud gateway-使用
阅读量:6239 次
发布时间:2019-06-22

本文共 977 字,大约阅读时间需要 3 分钟。

一、pom增加

org.springframework.boot
spring-boot-starter-webflux
org.springframework.cloud
spring-cloud-starter-gateway

二、使用

启动类无需任何设置,设置配置文件

spring:  application:    name: gateway-service  cloud:    gateway:#      discovery:      #方式一、是否与服务发现组件进行结合,通过 serviceId(必须设置成大写) 转发到具体的服务实例。默认为false,设为true便开启通过服务中心的自动根据 serviceId 创建路由的功能。#        locator:      #路由访问方式:http://Gateway_HOST:Gateway_PORT/大写的serviceId/**,其中微服务应用名默认大写访问。#          enabled: true#      routes:  #方式二 使用lb负载均衡加载#      - id: USERSERVICE#        uri: lb://USER-SERVICE:8762#        predicates:#          - Path=/userapi/**#        filters:#          - StripPrefix=1      routes:  #方式三 直接使用 域名地址      - id: USERSERVICE        uri: http://localhost:8762        predicates:          - Path=/userapi/**        filters:          - StripPrefix=1

参考代码:

转载地址:http://ncdia.baihongyu.com/

你可能感兴趣的文章
【kruscal】【最小生成树】poj3522 Slim Span
查看>>
jquery ajax提交表单数据的两种方式
查看>>
hdu 2102 A计划-bfs
查看>>
学习集合
查看>>
18校招借鉴
查看>>
JAVA第三次作业
查看>>
2017ICPC北京 J:Pangu and Stones
查看>>
Pandas 数据清洗保存
查看>>
SpringBoot + nodeJS + zookeeper 搭建微服务示例
查看>>
《互联网时代》第二集·浪潮
查看>>
8.10 exec函数
查看>>
Shell命令-文件及内容处理之sort、uniq
查看>>
Android 之文件夹排序
查看>>
Java Assert 用法简介
查看>>
关于redo size(一)
查看>>
We Know What @You #Tag: Does the Dual Role Affect Hashtag Adoption-20160520
查看>>
(转)Eclipse新增安卓虚拟机
查看>>
SpringMvc访问Controller去掉do
查看>>
PHPnow升级PHP 5.4与Mysql 5.5
查看>>
正则表达式验证邮箱格式
查看>>