SpringCloud AlibabaSentinel

Sentinel

官网

https://github.com/alibaba/Sentinel

中文 

https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D

SpringCloud AlibabaSentinel_第1张图片 

SpringCloud AlibabaSentinel_第2张图片 

SpringCloud AlibabaSentinel_第3张图片 

怎么玩 

服务使用中的各种问题

 服务雪崩

 服务降级

 服务熔断

 服务限流

安装Sentinel控制台

后台

前台8080

安装步骤

下载

https://github.com/alibaba/Sentinel/releases

SpringCloud AlibabaSentinel_第4张图片

下载到本地sentinel-dashboard-1.7.0.jar 

java -jar sentinel-dashboard-1.7.0.jar

SpringCloud AlibabaSentinel_第5张图片

 

 

运行命令访问

前提

java8环境OK

8080端口不能被占用

sentinel管理界面

SpringCloud AlibabaSentinel_第6张图片

访问sentinel管理界面

http://localhost:8080


 

登录账号密码均为sentinel

通常需要的依赖 

 
        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-discovery
        
        
        
            com.alibaba.csp
            sentinel-datasource-nacos
        
        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-sentinel
        
        
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
        
            org.springframework.boot
            spring-boot-devtools
            runtime
            true
        
        
            cn.hutool
            hutool-all
            4.6.3
        
        
            org.projectlombok
            lombok
            true
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

    

你可能感兴趣的:(SpringCloud,Alibaba,spring,cloud,java,spring)