其他分享
首页 > 其他分享> > Gateway网关请求转发配置文件

Gateway网关请求转发配置文件

作者:互联网

server:
port: 80
spring:
application:
name: gateway-server
cloud:
gateway:
enabled: true
routes:
#路由id,唯一即可
- id: user_route
#当下面的Path相同时,将请求转发到该uri
uri: http://localhost:9500
predicates:
- Path=/login

标签:网关,配置文件,uri,Gateway,转发,id,Path,server,gateway
来源: https://www.cnblogs.com/dronff/p/16459499.html