spring cloud nacos 三 Sentinel的使用

spring cloud nacos 三 Sentinel的使用
一.Spring Cloud中使用Sentinel
1.在服务提供者pom.xml 加入 spring-cloud-starter-alibaba-sentine

		<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
            <version>0.9.0.RELEASE</version>
        </dependency>

2.application.yml

server:
  port: 8762
  # 注意:下面注释了是因为 消费者可能会因为配置了context-path 而调用请求不到提供者的服务
 # servlet:
 #   context-path: /nacos-provider
spring:
  application:
    name: nacos-provider
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
    sentinel:
      transport:
        port: 8719
        dashboard: localhost:8080

3.在controller中加入注解

package com.sunup.practice.controller;

import com.alibaba.csp.sentinel.annotation.SentinelResource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
@Slf4j
public class ProviderController {
    @GetMapping("/hello")
    @SentinelResource(value="hello")
    public String hi(@RequestParam(value = "name", defaultValue = "nacos", required = false) String name) {
        log.debug(name);
        return "hello" + name;
    }
}

4启动sentinel 下载地址 https://github.com/alibaba/Sentinel/releases 我下载的1.6.2版本 启动 java -jar sentinel-dashboard-1.6.2.jar 访问 http://localhost:8080
在这里插入图片描述
5.在流控规则添加规则
在这里插入图片描述

6.然后重启服务提供者访问http://localhost:8761/hello 每秒多访问几次就会出现
Blocked by Sentinel (flow limiting)

二、在FeignClient中使用Sentinel
1.在消费者pom.xml 中加入

		<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
            <version>0.9.0.RELEASE</version>
        </dependency>

2.application.yml添加配置

server:
  port: 8763
  # 注意:下面注释了是因为 消费者可能会因为配置了context-path 而调用请求不到提供者的服务
 # servlet:
 #   context-path: /nacos-consuer
spring:
  application:
    name: nacos-consuer
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
    sentinel:
      transport:
        port: 8719
        dashboard: localhost:8080

feign.sentinel.enabled: true

3.还是添加规则
在这里插入图片描述

4.访问http://localhost:8763/helloFeign
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

等一场春雨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值