网关的核心功能特性:
-
请求路由
-
权限控制
-
限流
权限控制:网关作为微服务入口,需要校验用户是是否有请求资格,如果没有则进行拦截。
路由和负载均衡:一切请求都必须先经过gateway,但网关不处理业务,而是根据某种规则,把请求转发到某个微服务,这个过程叫做路由。当然路由的目标服务有多个时,还需要做负载均衡。
限流:当请求流量过高时,在网关中按照下流的微服务能够接受的速度来放行请求,避免服务压力过大
1、搭建网关
1)创建gateway服务,引入依赖
<!--gateway网关-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<!--nacos服务发现依赖-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
2)修改配置
创建application.yml文件,内容如下:
server:
port: 10010 #网关端口
spring:
application:
name: gateway #服务名称
cloud:
nacos:
server-addr: localhost:8848 #nacos服务地址
gateway:
routes:
- id: item-service #路由id,自定义,只要不重复即可
uri: lb://itemservice #本路由对应的后台服务
predicates:
- Path=/item/**
- id: user-service #路由id,自定义,只要不重复即可
uri: lb://userservice #本路由对应的后台服务
predicates:
- Path=/user/**,/address/**
- id: order-service #路由id,自定义,只要不重复即可
uri: lb://orderservice #本路由对应的后台服务
predicates:
- Path=/order/**,/pay/**
- id: search-service #路由id,自定义,只要不重复即可
uri: lb://searchservice #本路由对应的后台服务
predicates:
- Path=/search/**
default-filters: #默认过滤器(对所有请求都生效)
- AddRequestHeader=authorization,2
globalcors: # 全局的跨域处理
add-to-simple-url-handler-mapping: true # 解决options请求被拦截问题
corsConfigurations:
'[/**]':
allowedOrigins: # 允许哪些网站的跨域请求
- "http://localhost:9001"
- "http://localhost:9002"
allowedMethods: "*" # 允许的跨域ajax的请求方式
allowedHeaders: "*" # 允许在请求中携带的头信息
allowCredentials: true # 是否允许携带cookie
maxAge: 360000 # 这次跨域检测的有效期
3)编写启动类
package com.itheima.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
}
2、配置过滤器:
请求头过滤器
只需要修改gapplication.yml文件,添加路由过滤即可:
所有user的请求,都要添加一个固定格式的请求头
过滤器写在路由下,表示只对当前路由有效
spring:
cloud:
gateway:
routes:
- id: user-service
uri: lb://userservice
predicates:
- Path=/user/**
filters: # 过滤器
- AddRequestHeader=Truth, Itcast is freaking awesome! # 添加请求头
默认过滤器
如果要对所有的路由都生效,则可以将过滤器工厂写到default下
spring:
cloud:
gateway:
routes:
- id: user-service
uri: lb://userservice
predicates:
- Path=/user/**
default-filters: # 默认过滤项
- AddRequestHeader=Truth, Itcast is freaking awesome!