08.SpringCloud Gateway (新一代网关)
2021-06-11 16:05
标签:日志监控 new scope fir details parameter 映射 正整数 path 08.SpringCloud Gateway (新一代网关) 标签:日志监控 new scope fir details parameter 映射 正整数 path 原文地址:https://www.cnblogs.com/superComputer/p/14220125.html
1.概述
基本说明
我们为什么选择Gatway?
Zuul1.x模型
GateWay模型
2.三大核心概念
Route(路由)
Predicate(断言)
Filter(过滤)
3.Gateway工作流程
4.入门配置
server:
port: 9527
spring:
application:
name: cloud-gateway
cloud:
gateway:
discovery:
locator:
enabled: true #开启从注册中心动态创建路由的功能,利用微服务名进行路由
routes:
- id: payment_routh #路由的ID,没有固定规则但要求唯一,建议配合服务名
uri: http://localhost:8001 #匹配后提供服务的路由地址
predicates:
- Path=/payment/get/** #断言,路径相匹配的进行路由
- id: payment_routh2
uri: http://localhost:8001 #匹配后提供服务的路由地址
predicates:
- Path=/payment/lb/** #断言,路径相匹配的进行路由
eureka:
instance:
hostname: cloud-gateway-service
client:
service-url:
register-with-eureka: true
fetch-registry: true
defaultZone: http://eureka7001.com:7001/eureka
@SpringBootApplication
@EnableEurekaClient
public class GateWayMain9527 {
public static void main(String[] args) {
SpringApplication.run( GateWayMain9527.class,args);
}
}
server:
port: 9527
spring:
application:
name: cloud-gateway
cloud:
gateway:
discovery:
locator:
enabled: true #开启从注册中心动态创建路由的功能,利用微服务名进行路由
routes:
- id: payment_routh #路由的ID,没有固定规则但要求唯一,建议配合服务名
uri: http://localhost:8001 #匹配后提供服务的路由地址
predicates:
- Path=/payment/get/** #断言,路径相匹配的进行路由
- id: payment_routh2
uri: http://localhost:8001 #匹配后提供服务的路由地址
predicates:
- Path=/payment/lb/** #断言,路径相匹配的进行路由
eureka:
instance:
hostname: cloud-gateway-service
client:
service-url:
register-with-eureka: true
fetch-registry: true
defaultZone: http://eureka7001.com:7001/eureka
http://localhost:8001/payment/get/31yml配置说明
在配置文件yml中配置
代码中注入RouteLocator的Bean
@Configuration
public class GateWayConfig {
@Bean
public RouteLocator customRouteLocator(RouteLocatorBuilder routeLocatorBuilder) {
RouteLocatorBuilder.Builder routes = routeLocatorBuilder.routes();
routes.route("path_rote_atguigu", r -> r.path("/guonei").uri("http://news.baidu.com/guonei")).build();
return routes.build();
}
}
5.通过微服务名实现动态路由
yml配置
server:
port: 9527
spring:
application:
name: cloud-gateway
cloud:
gateway:
discovery:
locator:
enabled: true #开启从注册中心动态创建路由的功能,利用微服务名进行路由
routes:
- id: payment_routh #路由的ID,没有固定规则但要求唯一,建议配合服务名
#uri: http://localhost:8001 #匹配后提供服务的路由地址
uri: lb://cloud-payment-service #负载均衡,根据服务名找
predicates:
- Path=/payment/get/** #断言,路径相匹配的进行路由
- id: payment_routh2
#uri: http://localhost:8001 #匹配后提供服务的路由地址
uri: lb://cloud-payment-service #负载均衡,根据服务名找
predicates:
- Path=/payment/lb/** #断言,路径相匹配的进行路由
eureka:
instance:
hostname: cloud-gateway-service
client:
service-url:
register-with-eureka: true
fetch-registry: true
defaultZone: http://eureka7001.com:7001/eureka
6.Predicate的使用
是什么
常用的Route Predicate
#这些是常用的断言,如果不符合,就返回404,找不到
- After=2020-03-08T10:59:34.102+08:00[Asia/Shanghai] 这个时间后面访问才行
- Before=2020-03-08T10:59:34.102+08:00[Asia/Shanghai]
- Between=2020-03-08T10:59:34.102+08:00[Asia/Shanghai] , 2020-03-08T10:59:34.102+08:00[Asia/Shanghai]
- Cookie=username,atguigu #并且Cookie是username=zhangshuai才能访问
- Host=**.baidu.com
- Method=GET
- Query=username, \d+ #要有参数名称并且是正整数才能路由
server:
port: 9527
spring:
application:
name: cloud-gateway
cloud:
gateway:
discovery:
locator:
enabled: true #开启从注册中心动态创建路由的功能,利用微服务名进行路由
routes:
- id: payment_routh #路由的ID,没有固定规则但要求唯一,建议配合服务名
#uri: http://localhost:8001 #匹配后提供服务的路由地址
uri: lb://cloud-payment-service #负载均衡,根据服务名找
predicates:
- Path=/payment/get/** #断言,路径相匹配的进行路由
- id: payment_routh2
#uri: http://localhost:8001 #匹配后提供服务的路由地址
uri: lb://cloud-payment-service #负载均衡,根据服务名找
predicates:
- Path=/payment/lb/** #断言,路径相匹配的进行路由
#这些是常用的断言,如果不符合,就返回404,找不到
#- After=2020-03-08T10:59:34.102+08:00[Asia/Shanghai] 这个时间后面访问才行
#- Cookie=username,zhangshuai #并且Cookie是username=zhangshuai才能访问
#- Header=X-Request-Id, \d+ #请求头中要有X-Request-Id属性并且值为整数的正则表达式
#- Host=**.atguigu.com #主机携带是这个才行
#- Method=GET #get 方法访问
#- Query=username, \d+ #要有参数名称并且是正整数才能
eureka:
instance:
hostname: cloud-gateway-service
client:
service-url:
register-with-eureka: true
fetch-registry: true
defaultZone: http://eureka7001.com:7001/eureka
7.Filter的使用
是什么
Spring Cloud Gateway的Filter
生命周期 (2个)
种类(2个)
常用的GatewayFilter (gateway定义作用不大)
自定义过滤器(自定义全局GlobalFilter)
Ordered
/**
* 自定义全局的filter Spring Cloud Gateway的Filter 没啥用,还是自己自定义的好用
*/
@Component
@Slf4j
public class MyLogGateWayFilter implements GlobalFilter, Ordered {
@Override
public Mono
启动
文章标题:08.SpringCloud Gateway (新一代网关)
文章链接:http://soscw.com/index.php/essay/93644.html