1.简介
网关作为流量的入口,常用功能包括路由转发、权限校验、限流控制。
spring:
cloud:
gateway:
routes:
- id: test_route
uri: http://www.baidu.com
predicates:
#访问的路径就是 如果是/hello?url=baidu 就转发到 https://www.baidu.com/hello?url=baidu
- Query=url,https://www.baidu.com
- id: test1_route
uri: http://www.hao123.com
predicates:
- Query=url,hao123
bootstrap.yml
spring:
application:
name: gulimall-gateway
cloud:
nacos:
config:
server-addr: 192.168.2.36:8848
namespace: 255b4d7d-a41d-4340-b4e0-8fcb111fc978
group: dev
file-extension: yaml
nacos config
spring:
application:
name: gulimall-gateway
cloud:
nacos:
discovery:
server-addr: 192.168.2.36:8848
server:
port: 88
导入的依赖文章来源:https://www.toymoban.com/news/detail-843829.html
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
详细的后面在介绍文章来源地址https://www.toymoban.com/news/detail-843829.html
到了这里,关于分布式组件 gateway 网关的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!