spring cloud alibaba - 集成sentinel

 一、安装sentinel控制台

        1、下载控制台jar

                官网下载

                高速下载

        2、使用java命令运行

        java -jar sentinel-dashboard-1.8.4.jar --server.port=8808

二、导入pom


    com.alibaba.cloud
    spring-cloud-starter-alibaba-sentinel

三、配置application.properties

    spring.cloud.sentinel.transport.dashboard=127.0.0.1:8808

四、使用sentinel

@RestController
public class HelloController {

    @DubboReference
    private HelloService helloService;

    /**
     * 可以在任何方法上使用
     */
    @SentinelResource(value = "hello", fallback = "fallback")
    @RequestMapping("/hello")
    public String sayHello() throws InterruptedException {
        Thread.sleep(800);
        helloService.sayHello();
        return "ok";
    }
    /**
     * 降级方法
     */
    public String fallback() {
        return "fail";
    }
}

五、配置限流规则

        1、登录sentinel控制台

                http://localhost:8808

                默认用户名:sentinel 密码:sentinel

        2、配置限流规则

         spring cloud alibaba - 集成sentinel_第1张图片

         spring cloud alibaba - 集成sentinel_第2张图片

        3、使用jmeter测试

        spring cloud alibaba - 集成sentinel_第3张图片

你可能感兴趣的:(spring,cloud,alibaba,sentinel,java,spring)