其他分享
首页 > 其他分享> > spring cloud gateway 访问方式

spring cloud gateway 访问方式

作者:互联网

1、通过网关路由配置来访问服务

http://网关地址:端口/路由断言Path/具体服务的url

 1 spring:
 2   cloud:
 3     gateway:
 4       discovery:
 5         locator:
 6           enabled: true
 7           lower-case-service-id: true
 8       routes:
 9         - id: board-web
10           uri: lb://board-web
11           predicates:
12             - Path=/board-web-route/**
13             - After=2022-09-11T16:30:40.785+08:00[Asia/Shanghai]
14           filters:
15             - StripPrefix=1

以上配置的访问地址为:http://localhost:8080/board-web-route/api/test

 

2、通过服务注册中心注册的serviceid访问,用此方式访问服务时,上面的网关配置信息不生效 

http://网关地址:端口/服务注册中心 serviceid/具体服务的url

访问地址为:http://localhost:8080/board-web/api/test

标签:web,网关,http,spring,访问,board,服务,gateway,cloud
来源: https://www.cnblogs.com/donghuimao/p/16695658.html