<dependencies>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
</dependency>
</dependencies>
server:
port: 8888
spring:
application:
name: cloud-gateway
main:
allow-bean-definition-overriding: true
cloud:
nacos:
discovery:
server-addr: 192.168.174.11:8848
namespace: 5f5b189f-1d18-4478-ad4e-e186e60310a8
group: CLOUD_GROUP
sentinel:
transport:
dashboard: 192.168.174.11:8080
port: 8719
eager: true # 取消Sentinel控制台懒加载,即项目启动即连接sentinel
# scg:
# fallback:
# mode: response
# response-status: 403
# response-body: '{"code":403,"msg":"限流了"}'
gateway:
discovery:
locator:
enabled: true
lower-case-service-id: true
routes:
- id: user_route
uri: lb://cloud-user
predicates:
- Path=/api/user/**
- id: product_route
uri: lb://cloud-product
predicates:
- Path=/api/product/**
- id: order_route
uri: lb://cloud-order
predicates:
- Path=/api/order/**
filters:
- AddRequestHeader=X-Request-Author, HaiQing.Yu
package com.explore.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
/**
* 网关启动类
*
* @author: YuHaiQing
* @time: 2022/2/4 23:34
*/
@EnableDiscoveryClient
@SpringBootApplication
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class,args);
}
}
package com.explore.gateway.config;
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayRuleManager;
import com.alibaba.csp.sentinel.adapter.gateway.sc.SentinelGatewayFilter;
import com.alibaba.csp.sentinel.adapter.gateway.sc.callback.BlockRequestHandler;
import com.alibaba.csp.sentinel.adapter.gateway.sc.callback.GatewayCallbackManager;
import com.alibaba.csp.sentinel.adapter.gateway.sc.exception.SentinelGatewayBlockExceptionHandler;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.cloud.gateway.filter.GlobalFilter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.codec.ServerCodecConfigurer;
import org.springframework.web.reactive.function.BodyInserters;
import org.springframework.web.reactive.function.server.ServerResponse;
import org.springframework.web.reactive.result.view.ViewResolver;
import org.springframework.web.server.ServerWebExchange;
import reactor.core.publisher.Mono;
import javax.annotation.PostConstruct;
import java.util.*;
/**
* 网关配置
*
* @author: YuHaiQing
* @time: 2022/2/5 0:01
*/
@Configuration
public class GatewayConfig {
private final List<ViewResolver> viewResolvers;
private final ServerCodecConfigurer serverCodecConfigurer;
public GatewayConfig(ObjectProvider<List<ViewResolver>> viewResolversProvider,
ServerCodecConfigurer serverCodecConfigurer) {
this.viewResolvers = viewResolversProvider.getIfAvailable(Collections::emptyList);
this.serverCodecConfigurer = serverCodecConfigurer;
}
@Bean
@Order(-1)
public SentinelGatewayBlockExceptionHandler sentinelGatewayBlockExceptionHandler() {
// Register the block exception handler for Spring Cloud Gateway.
return new SentinelGatewayBlockExceptionHandler(viewResolvers, serverCodecConfigurer);
}
@Bean
@Order(-1)
public GlobalFilter sentinelGatewayFilter() {
return new SentinelGatewayFilter();
}
// @PostConstruct
// public void initBlockHandler(){
//
// BlockRequestHandler blockHandler = new BlockRequestHandler() {
// @Override
// public Mono<ServerResponse> handleRequest(ServerWebExchange serverWebExchange, Throwable throwable) {
// Map<String,Object> map = new HashMap<>();
// map.put("code",403);
// map.put("msg","限流了");
// return ServerResponse.status(HttpStatus.OK)
// .contentType(MediaType.APPLICATION_JSON)
// .body(BodyInserters.fromValue(map));
// }
// };
//
// GatewayCallbackManager.setBlockHandler(blockHandler);
//
// }
// @PostConstruct
// public void doInit() {
// initGatewayRules();
// }
//
// /**
// * 配置限流规则
// */
// private void initGatewayRules() {
// Set<GatewayFlowRule> rules = new HashSet<>();
// rules.add(new GatewayFlowRule("user_route")
// .setCount(1) // 限流阈值
// .setIntervalSec(1) // 统计时间窗口,单位是秒,默认是 1 秒
// );
// GatewayRuleManager.loadRules(rules);
// }
}