加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
application-gateway-dev.yml 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhoutao 提交于 2023-06-19 19:28 . init
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8000/eureka/
instance:
prefer-ip-address: true #使用ip地址进行注册
instance-id: gateway-server:8500 #实例ID
spring:
application:
name: gateway-server
cloud:
gateway:
discovery:
locator:
enabled: false #开放服务名访问方式
lower-case-service-id: true #服务名小写
routes:
- id: pay-server #指定服务名
uri: lb://pay-server #去注册中心找这个服务名
predicates: #断言,匹配访问的路径
- Path=/api/pay/** #服务访问路径
filters:
- StripPrefix=2 #请求转发的时候会去掉 /user访问路径
server:
port: 8500
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化