SpringCloud教程 | 第九篇: 使用API Gateway

07-19 1086阅读

1、参考资料

SpringCloud基础篇-10-服务网关-Gateway_springcloud gateway-CSDN博客

2、先学习路由,参考了5.1

SpringCloud教程 | 第九篇: 使用API Gateway

2.1、建了一个cloudGatewayDemo,这是用来配置网关的工程,配置如下:

SpringCloud教程 | 第九篇: 使用API Gateway

http://localhost:18080/aaa/name

该接口代码如下:

SpringCloud教程 | 第九篇: 使用API Gateway

2.2、另外建了一个服务providerDemo,用来被路由过来的。

SpringCloud教程 | 第九篇: 使用API Gateway

要验证的接口内容如下:

SpringCloud教程 | 第九篇: 使用API Gateway

2.3、启动了这2个服务,然后访问http://localhost:18080/aaa/name

发现只在cloudGatewayDemo的控制台打印了日志,并未在另外一个服务providerDemo中有日志打印。

SpringCloud教程 | 第九篇: 使用API Gateway

这就说明路由没生效。怎么解决这个问题呢?使路由生效,访问http://localhost:18080/aaa/name

然后路由到http://localhost:18082/aaa/name

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]