SpringBoot基于RateLimiter+AOP動態(tài)的為不同接口限流

一 限流實現(xiàn):

  1. RateLimiter是guava提供的基于令牌桶算法的實現(xiàn)類豪筝,可以非常簡單的完成限流特技,并且根據(jù)系統(tǒng)的實際情況來調(diào)整生成token的速率窒舟。
    2.導入相關(guān)依賴包

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>

3.代碼實現(xiàn)不多說每一步都有注解

3.1 定義注解

@Inherited
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RateLimit {
    double limitNum() default 20;  //默認每秒放入桶中的token
}
2.3.2 封裝定義返回結(jié)果

public class MyResult {
    private Integer status;
    private String msg;
    private List<Object> data;

    public MyResult(Integer status, String msg, List<Object> data) {
        this.status = status;
        this.msg = msg;
        this.data = data;
    }

    public static MyResult OK(String msg, List<Object> data) {
        return new MyResult(200, msg, data);
    }

    public static MyResult Error(Integer status, String msg) {
        return new MyResult(status, msg, null);
    }

3.3 aop實現(xiàn)

@Component
@Scope
@Aspect
public class RateLimitAspect {
private Logger log = LoggerFactory.getLogger(this.getClass());
//用來存放不同接口的RateLimiter(key為接口名稱工腋,value為RateLimiter)
private ConcurrentHashMap<String, RateLimiter> map = new ConcurrentHashMap<>();

private static ObjectMapper objectMapper = new ObjectMapper();

private RateLimiter rateLimiter;

@Autowired
private HttpServletResponse response;

@Pointcut("@annotation(com.icat.retalimitaop.annotation.RateLimit)")
public void serviceLimit() {
}

@Around("serviceLimit()")
public Object around(ProceedingJoinPoint joinPoint) throws NoSuchMethodException {
    Object obj = null;
    //獲取攔截的方法名
    Signature sig = joinPoint.getSignature();
    //獲取攔截的方法名
    MethodSignature msig = (MethodSignature) sig;
    //返回被織入增加處理目標對象
    Object target = joinPoint.getTarget();
    //為了獲取注解信息
    Method currentMethod = target.getClass().getMethod(msig.getName(), msig.getParameterTypes());
    //獲取注解信息
    RateLimit annotation = currentMethod.getAnnotation(RateLimit.class);
    double limitNum = annotation.limitNum(); //獲取注解每秒加入桶中的token
    String functionName = msig.getName(); // 注解所在方法名區(qū)分不同的限流策略

    //獲取rateLimiter
     if(map.containsKey(functionName)){
         rateLimiter = map.get(functionName);
     }else {
         map.put(functionName, RateLimiter.create(limitNum));
         rateLimiter = map.get(functionName);
     }

    try {
        if (rateLimiter.tryAcquire()) {
            //執(zhí)行方法
            obj = joinPoint.proceed();
        } else {
            //拒絕了請求(服務(wù)降級)
            String result = objectMapper.writeValueAsString(MyResult.Error(500, "系統(tǒng)繁忙又碌!"));
            log.info("拒絕了請求:" + result);
            outErrorResult(result);
        }
    } catch (Throwable throwable) {
        throwable.printStackTrace();
    }
    return obj;
}
//將結(jié)果返回
public void outErrorResult(String result) {
    response.setContentType("application/json;charset=UTF-8");
    try (ServletOutputStream outputStream = response.getOutputStream()) {
        outputStream.write(result.getBytes("utf-8"));
    } catch (IOException e) {
        e.printStackTrace();
    }
}

static {
    objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
}

}
二 測試限流
2個接口設(shè)定沒秒限流5個和美妙限流10個
@RateLimit(limitNum = 5.0)
public MyResult getResults() {
log.info("調(diào)用了方法getResults");
return MyResult.OK("調(diào)用了方法", null);
}

@RateLimit(limitNum = 10.0)
public MyResult getResultTwo() {
    log.info("調(diào)用了方法getResultTwo");
    return MyResult.OK("調(diào)用了方法getResultTwo", null);

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市尉咕,隨后出現(xiàn)的幾起案子叠蝇,更是在濱河造成了極大的恐慌,老刑警劉巖年缎,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件悔捶,死亡現(xiàn)場離奇詭異,居然都是意外死亡单芜,警方通過查閱死者的電腦和手機蜕该,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來洲鸠,“玉大人堂淡,你說我怎么就攤上這事馋缅。” “怎么了绢淀?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵萤悴,是天一觀的道長。 經(jīng)常有香客問我皆的,道長覆履,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任费薄,我火速辦了婚禮硝全,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘义锥。我一直安慰自己柳沙,他們只是感情好,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布拌倍。 她就那樣靜靜地躺著赂鲤,像睡著了一般。 火紅的嫁衣襯著肌膚如雪柱恤。 梳的紋絲不亂的頭發(fā)上数初,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天,我揣著相機與錄音梗顺,去河邊找鬼泡孩。 笑死,一個胖子當著我的面吹牛寺谤,可吹牛的內(nèi)容都是我干的仑鸥。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼变屁,長吁一口氣:“原來是場噩夢啊……” “哼眼俊!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起粟关,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤疮胖,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后闷板,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體澎灸,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年遮晚,在試婚紗的時候發(fā)現(xiàn)自己被綠了性昭。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡鹏漆,死狀恐怖巩梢,靈堂內(nèi)的尸體忽然破棺而出创泄,到底是詐尸還是另有隱情,我是刑警寧澤括蝠,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布鞠抑,位于F島的核電站,受9級特大地震影響忌警,放射性物質(zhì)發(fā)生泄漏搁拙。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一法绵、第九天 我趴在偏房一處隱蔽的房頂上張望箕速。 院中可真熱鬧,春花似錦朋譬、人聲如沸盐茎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽字柠。三九已至,卻和暖如春狡赐,著一層夾襖步出監(jiān)牢的瞬間窑业,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工枕屉, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留常柄,地道東北人。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓搀擂,卻偏偏與公主長得像西潘,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子哨颂,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容