- pom引入依赖
<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>
- 添加配置
spring.cloud.sentinel.transport.dashboard=localhost:8858
spring.cloud.sentinel.transport.port=8749
spring.cloud.sentinel.filter.enabled=false
- 编写启动类
@EnableDiscoveryClient
@SpringBootApplication
public class SentinelGatewayApplication {
public static void main(String[] args) {
System.setProperty(SentinelConfig.APP_TYPE_PROP_KEY, "1");
System.setProperty("csp.sentinel.dashboard.server","localhost:8858");
System.setProperty(SentinelConfig.PROJECT_NAME_PROP_KEY,"hello-sentinel-gateway");
SpringApplication.run(SentinelGatewayApplication.class, args) ;
}
}
- 编写限流规则
@Configuration
public class FlowRuleConfig {
@PostConstruct
public void init(){
this.initCustomizeRule();
this.initCustomizedApis();
}
private void initCustomizeRule(){
log.info("------加载限流分组规则----------");
Set<GatewayFlowRule> list = new HashSet<>() ;
GatewayFlowRule rule = new GatewayFlowRule("hello_nacos_client") ;
rule.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_ROUTE_ID) ;
rule.setGrade(RuleConstant.FLOW_GRADE_QPS) ;
rule.setIntervalSec(60) ;
rule.setCount(4) ;
list.add(rule) ;
GatewayFlowRule rule1 = new GatewayFlowRule("hello_nacos_client_1") ;
rule1.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_CUSTOM_API_NAME) ;
rule1.setGrade(RuleConstant.FLOW_GRADE_QPS) ;
rule1.setIntervalSec(2) ;
rule1.setCount(1) ;
list.add(rule1) ;
GatewayFlowRule rule2 = new GatewayFlowRule("hello_nacos_client_2") ;
rule2.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_CUSTOM_API_NAME) ;
rule2.setGrade(RuleConstant.FLOW_GRADE_QPS) ;
rule2.setIntervalSec(10) ;
rule2.setCount(2) ;
list.add(rule2) ;
GatewayRuleManager.loadRules(list) ;
}
private void initCustomizedApis() {
Set<ApiDefinition> definitions = new HashSet<>();
ApiDefinition api1 = new ApiDefinition("hello_nacos_client_1")
.setPredicateItems(new HashSet<>() {{
add(new ApiPathPredicateItem().setPattern("/hello-nacos/hello/index"));
}});
ApiDefinition api2 = new ApiDefinition("hello_nacos_client_2")
.setPredicateItems(new HashSet<>() {{
add(new ApiPathPredicateItem().setPattern("/hello-nacos/user/add"));
add(new ApiPathPredicateItem().setPattern("/hello-nacos/user/**")
.setMatchStrategy(SentinelGatewayConstants.PARAM_MATCH_STRATEGY_PREFIX));
}});
definitions.add(api1);
definitions.add(api2);
GatewayApiDefinitionManager.loadApiDefinitions(definitions);
}
}
- 配置网关路由规则
spring.cloud.gateway.enabled=true
spring.cloud.gateway.discovery.locator.lower-case-service-id=true
spring.cloud.gateway.routes[0].id=hello-nacos-client
spring.cloud.gateway.routes[0].uri=lb://hello-nacos-client
spring.cloud.gateway.routes[0].predicates[0]=Path=/hello-nacos/**
spring.cloud.gateway.routes[0].filters[0]=StripPrefix=1
- 浏览器访问:http://localhost:8080/hello-nacos/hello/index
- 在【硬编码方式配置限流规则】的基础上去除FlowRuleConfig配置
- application.properties中添加配置
# 配置限流规则
spring.cloud.sentinel.datasource.ds1.file.file=classpath:sentinel/gateway-flow-rule-sentinel.json
spring.cloud.sentinel.datasource.ds1.file.dataType=json
spring.cloud.sentinel.datasource.ds1.file.rule-type=gw-flow
# 配置API分组
spring.cloud.sentinel.datasource.ds2.file.file=classpath:sentinel/gateway-flow-api-group-sentinel.json
spring.cloud.sentinel.datasource.ds2.file.dataType=json
spring.cloud.sentinel.datasource.ds2.file.rule-type=gw-api-group
- 在resources目录下新建目录sentinel
- 在resource/sentinel目录中新建gateway-flow-rule-sentinel.json
[
{
"resource": "hello_nacos_client_1",
"grade": 1,
"resourceMode": 1,
"intervalSec": 2,
"count": 1
},
{
"resource": "hello_nacos_client_2",
"grade": 1,
"resourceMode": 1,
"intervalSec": 10,
"count": 2
}
]
- 在resource/sentinel目录中新建gateway-flow-api-group-sentinel.json
[
{
"apiName": "hello_nacos_client_1",
"predicateItems":[
{
"pattern": "/hello-nacos/hello/index"
}
]
},
{
"apiName": "hello_nacos_client_2",
"predicateItems":[
{
"pattern": "/hello-nacos/user/add"
},
{
"pattern": "/hello-nacos/user/*",
"matchStrategy": 1
}
]
}
]