博客
关于我
Sentinel入门(二)
阅读量:533 次
发布时间:2019-03-07

本文共 2415 字,大约阅读时间需要 8 分钟。

Spring Boot 与 Sentinel 简单示例

1. 创建 Spring Boot 应用

创建一个名为“Sentinel-Quick-start”的Spring Boot应用。我们需要使用 Maven 进行依赖管理。

2. Maven 依赖

在项目的 pom.xml 中添加以下依赖:

Sentinel 核心依赖

com.alibaba.csp
sentinel-core
1.8.0

引入 HTTP 运输依赖

com.alibaba.csp
sentinel-transport-simple-http
1.8.0

注解支持依赖

com.alibaba.csp
sentinel-annotation-aspectj
1.8.0

3. 编写 Controller

@Controllerpublic class TestController {    @RequestMapping(path = "/hello", method = RequestMethod.GET)    @ResponseBody    public String hello() {        try {            Entry ignored = SphU.entry("Hello");            System.out.println("Hello Sentinel");            return "Hello Sentinel";        } catch (BlockException e) {            System.out.println("系统繁忙,请稍后");            e.printStackTrace();            return "系统繁忙,请稍后";        }    }}

异步调用支持

在启动类中添加 @EnableAsync

@SpringBootApplication@EnableAsyncpublic class SentinelQuickStartApplication {    public static void main(String[] args) {        SpringApplication.run(SentinelQuickStartApplication.class, args);    }}

创建异步服务类:

@Servicepublic class AsyncService {    @Async    public void hello() {        try {            Thread.sleep(5000L);        } catch (InterruptedException e) {            e.printStackTrace();        }    }}

Controller 中使用异步方法:

@Autowiredprivate AsyncService asyncService;@RequestMapping(path = "/async", method = RequestMethod.GET)public void async() {    try {        AsyncEntry asyncEntry = null;        asyncEntry = SphU.asyncEntry("Sentinel_Async");        asyncService.hello();        System.out.println("异步测试");    } catch (BlockException e) {        e.printStackTrace();        System.out.println("系统繁忙请稍后再试");    } finally {        if (asyncEntry != null) {            asyncEntry.exit();        }    }}

4. 在 Idea 中设置 JVM 启动参数

在 Idea 的项目设置中,添加以下 VM 参数:

-Dcsp.sentinel.dashboard.server=127.0.0.1:9000    # 指定 Sentinel 控制台地址和端口-Dproject.name=Sentinel-Quick-Start                  # 本地应用在控制台中的名称

5. 启动项目

运行 Maven �入りDeploy 上线,或者通过 Idea 直接运行启动类。

6. 启动 Sentinel 控制台

下载 Sentinel Dashboard 最新的 JAR 包,并在终端中执行:

java -Dserver.port=9000 -jar sentinel-dashboard-1.8.0.jar

登录控制台,用户名和密码均为“Sentinel”。

7.测试运行

第一次访问控制台,需要先访问被限流的接口“/hello”。此外,可以通过设置不同的限流规则,动态查看控制台中的统计数据。

通过这些步骤,成功地将 Spring Boot 应用与 Sentinel 控制台连接,实现了限流功能的管理和监控。

转载地址:http://ssinz.baihongyu.com/

你可能感兴趣的文章
Pipenv 与 Conda?
查看>>
QVGA/HVGA/WVGA/FWVGA分辨率屏含义及大小//Android虚拟机分辨率
查看>>
pipreqs : 无法将“pipreqs”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径 正确,然后再试一次。
查看>>
pipy国内镜像的网址
查看>>
quiver绘制python语言
查看>>
pip下载缓慢
查看>>
PIP使用SSH从BitBucket安装自定义软件包,无需输入SSH密码
查看>>
pip命令提示unknow or unsupported command install解决方法
查看>>
pip在安装模块时提示Read timed out
查看>>
pip更换源
查看>>
SpringBoot之Banner源码深度分解
查看>>
Pix2Pix如何工作?
查看>>
QuickBI助你成为分析师——搞定数据源
查看>>
pkl来存储python字典
查看>>
quick sort | 快速排序 C++ 实现
查看>>
pkpmbs 建设工程质量监督系统 Ajax_operaFile.aspx 文件读取漏洞复现
查看>>
pkpmbs 建设工程质量监督系统 文件上传漏洞复现
查看>>
pku 2400 Supervisor, Supervisee KM求最小权匹配+DFS回溯解集
查看>>
queue队列、deque双端队列和priority_queue优先队列
查看>>
PKUSC2018游记
查看>>