介绍:SpringCloud Gateway网关是基于异步非阻塞,底层整合了WebFlux和Netty,而WebFlux是典型的非阻塞异步框架,(Srping5让你必须使用Java8),Spring WebFlux是Spring 5.0引入的新的响应式框架,它是完全异步非阻塞
前置说明:
网关转发流程:先断言匹配规则 ====> 匹配成功再转发到服务地址
动态路由特性:具有负载均衡的能力
依赖包:
搭建网关服务,不需要引入 spring-boot-starter-web 依赖,引入web依赖会报错。只需要引入如下依赖即可:
<!-- eureka客户端 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!-- spring-cloud-gateway -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
一、静态路由配置
配置示例如下:
spring:
application:
name: cloud-gateway
cloud:
gateway:
routes:
- id: payment_routh # 路由的Id,没有固定规则但要求唯一,建议配合服务名
uri: http://localhost:8001 # 匹配后提供服务的路由地址
predicates:
- Path=/payment/getPaymentById/** # 断言 路径相匹配的进行路由
- id: payment_routh2 # 路由的Id,没有固定规则但要求唯一,建议配合服务名
uri: http://localhost:8001 # 匹配后提供服务的路由地址
predicates:
- Path=/payment/feignTimeout/** # 断言 路径相匹配的进行路由
二、动态路由配置
说明:
1】lb是指 loadbalance 负载均衡策略
2】discovery是启动从注册中心通过服务名称发现服务,并解析主机名和端口
配置示例如下:
spring:
application:
name: cloud-gateway
cloud:
gateway:
# 网关配置跨域请求
globalcors:
corsConfigurations:
'[/**]':
allowedHeaders: "*"
allowedOrigins: "*"
allowCredentials: true
allowedMethods:
- GET
- POST
- DELETE
- PUT
- OPTION
# 开启服务发现
discovery:
locator:
enabled: true # 通过微服务名称进行路由,实现动态路由和负载均衡
# 配置网关路线
routes:
- id: payment_routh # 路由的Id,没有固定规则但要求唯一,建议配合服务名
uri: lb://cloud-payment-service # 匹配后提供服务的路由地址
predicates:
- Path=/payment/getPaymentById/** # 断言 路径相匹配的进行路由
- id: payment_routh2 # 路由的Id,没有固定规则但要求唯一,建议配合服务名
uri: lb://cloud-payment-service # 匹配后提供服务的路由地址
predicates:
- Path=/payment/feignTimeout/** # 断言 路径相匹配的进行路由
跨域还有如下一种配置方式:
spring:
cloud:
gateway:
# 。。。
globalcors: # 全局的跨域处理
add-to-simple-url-handler-mapping: true # 解决options请求被拦截问题
corsConfigurations:
'[/**]':
allowedOrigins: # 允许哪些网站的跨域请求
- "http://localhost:8090"
allowedMethods: # 允许的跨域ajax的请求方式
- "GET"
- "POST"
- "DELETE"
- "PUT"
- "OPTIONS"
allowedHeaders: "*" # 允许在请求中携带的头信息
allowCredentials: true # 是否允许携带cookie
maxAge: 360000 # 这次跨域检测的有效期