1 Gateway组件的作用

所有的请求必须从网关进去到服务,在网关中可以对请求进行过滤,如果请求满足指定的提定的条件则满足路由到微服务的请求

2 为什么需要使用Gateway组件

保证微服务的安全性

3 Gateway组件的使用步骤

1、创建Geteway的Module2、导入网关依赖


org.springframework.cloud
spring-cloud-starter-gateway



com.alibaba.cloud
spring-cloud-starter-alibaba-nacos-discovery

3、编写启动类
@SpringBootApplication
public class GatewayApplication {
public static void main(String[] args) { SpringApplication.run(GatewayApplication.class, args);
}
}
4、编写基础配置和路由规则
server:
port: 10010 # 网关端口
spring:
application:
name: gateway # 服务名称
cloud:
nacos:
server-addr: localhost:8848 # nacos地址
gateway:
routes: # 网关路由配置
- id: user-service # 路由id,自定义,只要唯一即可
# uri: http://127.0.0.1:8081 # 路由的目标地址 http就是固定地址
uri: lb://userservice # 路由的目标地址 lb就是负载均衡,后面跟服务名称
predicates: # 路由断言,也就是判断请求是否符合路由规则的条件
- Path=/user/** # 这个是按照路径匹配,只要以/user/开头就符合要求

4 Gateway路由规则的配置方式

:::tips 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 # 这次跨域检测的有效期 :::