下载对应版本的sentinel的jar包,通过终端命令:
java -jar jar包名
com.alibaba.cloud
spring-cloud-starter-alibaba-sentinel
(2)配置yml
server:
port: 8002
spring:
application:
name: WXL-DEV-SERVICE-2
cloud:
sentinel:
transport:
dashboard: 127.0.0.1:8080
可以设置阀值来流控:
流控文字可自定义:
@GetMapping("/world")
@SentinelResource(value = "helloWorld",blockHandler = "helloBlock")
public String helloWorld() {
return "Hello world";
}
public String helloBlock(BlockException e){
return "你已被流控";
}
value将该方法定义为sentinel的资源,blockHandler是流控时调用的方法。
这里的意思是如果/hello/add接口一秒钟之内访问超过2次,则/hello/query会被限流。
也要设置熔断时长,熔断时长过完之后会进入半开状态,即若下一次请求为慢请求则再次熔断,直到第一次请求不是慢请求才会恢复正常状态。
org.springframework.cloud
spring-cloud-starter-openfeign
feign:
sentinel:
enabled: true #开启openFeign对sentinel的整合
package com.wxl.feign;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
@FeignClient(name = "WXL-DEV-SERVICE-2", path = "/hello",fallback = ServiceFailFeign.class)
public interface Service1HelloInterface {
@GetMapping("/world")
String helloWorld();
}
并且这里添加参数fallback值为失败时回调的实现类。
实现类如下:
package com.wxl.feign;
import org.springframework.stereotype.Component;
@Component
public class ServiceFailFeign implements Service1HelloInterface{
public String helloWorld() {
return "降级了!!!";
}
}
请求该消费者服务接口:
com.alibaba.csp
sentinel-datasource-nacos
[{
"resource": "payment-gary",
"count": 1000,
"timeWindow": 5,
"grade": 0,
"minRequestAmount": 2,
"slowRatioThreshold": 0.2,
"statIntervalMs": 10000
}]
参考详见:
sentinel配置 持久化到nacos_yueF_L的博客-CSDN博客_sentinel持久化到nacos
Sentinel安装使用和配置,sentinel-dashboard安装使用和配置 - jiaoqing。 - 博客园
Gateway整合Sentinel熔断降级_小脑斧学技术的博客-CSDN博客_gateway整合sentinel降级