Sentinel 整合SpringCloud的详细教程
spring cloud alibaba sentinel 是阿里巴巴提供的,致力于提供微服务一站式解决方案,spring cloud alibaba 默认为 sentinel 整合了,servelet、resttemplate、feignclient 和 spring flux。在 spring 的生态中不仅不全了 hystrix 在 servelet 和 resttemplate 这一块的空白,而且还完美的兼容了 hystrix 在 feign 中的限流降级用法,并支持运行时灵活的配置和调整限流降级规则。
引入依赖:
<!--sentinel 整合springcloud 的依赖--> <dependency> <groupid>com.alibaba.cloud</groupid> <artifactid>spring-cloud-alibaba-sentinel</artifactid> <version>2.2.0.release</version> </dependency>
配置文件:
(入门使用中,应用名称使用的 jvm 参数设置的,整合 springcloud 就不需要那样了,配置文件中配置了应用的名称后,sentinel 会自动加载)
# 设置应用的名称 spring: application: name: springcloudsentinel cloud: sentinel: transport: #设置sentinel控制台的主机地址和端口号 dashboard: localhost:9000
编写测试 controller ,控制台添加 sentinel_cloud 资源 限流测试
@sentinelresource(value = "sentinel_cloud",blockhandler = "exceptionhandler") @getmapping("/sentinelcloud") public string sentinelcloud(){ //使用限流规则 return "sentinel_cloud,成功调用"; }
限流时调用的方法:
/** * 定义降级 / 限流 的处理函数 * * @param exception * @return */ public string exceptionhandler(blockexception exception) { exception.printstacktrace(); return "sentinel_cloud,访问限流"; }
sentinel整合feign (openfeign)
sentinel适配了feign组件。如果想要使用,除了引用spring-cloud-starter-alibaba-sentinel的依赖,还需要两个步骤:
配置打开sentinel对feign的支持:feign.sentinel.enable=true
加入spring-cloud-starter-openfeign依赖使sentinel starter自动化配置类生效。
# 设置应用的名称 spring: application: name: springcloudsentinel cloud: sentinel: transport: #设置sentinel控制台的主机地址和端口号 dashboard: localhost:9000 # 开启 sentinel 对 feign 的支持 feign: sentinel: enabled: true
服务端调用方controller
@getmapping("/feignhello") public string feignhello(){ return feignclient.feignhello(); }
服务提供方 feignclient
@feignclient(contextid = "testfeignclient", value = "注册中心中服务的名称", fallback = feignfallbackservice.class) public interface testfeignclient { /** * openfeign 远程调用的方法 * * @return */ @getmapping("/test/feignhello") string feignhello(); }
提供一个 feignclient 接口的实现类,作为限流的处理方法
@service public class feignfallbackservice implements testfeignclient{ @override public string feignhello() { return "feign 远程调用限流了"; } }
sentinel 控制台添加限流规则:
请求方式:http://服务模块注册中心名称/test/feignhello
到此这篇关于sentinel 之 整合springcloud的文章就介绍到这了,更多相关sentinel 整合springcloud内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 从0到100万:曲玮玮的95后创业经验谈
下一篇: Python中浅拷贝的四种实现方法小结