SpringBoot利用Guava实现单机app限流访问

该文章介绍了如何在SpringBoot应用中利用Guava库进行限流控制。通过引入Guava依赖,定义限流注解和AOP切面,可以限制特定API接口的并发访问,当超过设定的并发数时,将阻止额外的请求并返回错误信息。
摘要由CSDN通过智能技术生成

SpringBoot利用Guava实现单机app限流访问

物料准备:
1.引入Guava依赖
2.定义一个限流注解作用于api接口的方法上
3.定义一个切面,对注解标注的方法实现一个限流访问

引入Guava依赖

<dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>28.2-jre</version>
        </dependency>

定义注解@RateLimitAspect

package com.example.demo.service.guava;

import java.lang.annotation.*;


@Inherited
@Documented
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RateLimitAspect {
}

定义对应的处理的AOP逻辑

package com.example.demo.service.guava;

import com.alibaba.fastjson.JSON;
import com.example.demo.web.AjaxPubResponse;
import com.google.common.util.concurrent.RateLimiter;
import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;



@Component
@Scope
@Aspect
@Slf4j
public class RateLimitAop {

    @Autowired
    private HttpServletResponse response;
    @Pointcut("@annotation(com.example.demo.service.guava.RateLimitAspect)")
    public void serviceLimit() {
    }
    private RateLimiter rateLimiter = RateLimiter.create(5.0); //比如说,我这里设置"并发数"为5
    @Around("serviceLimit()")
    public Object around(ProceedingJoinPoint joinPoint) {
        Boolean flag = rateLimiter.tryAcquire();
        Object obj = null;
        try {
            if (flag) {
                obj = joinPoint.proceed();
            }else{
                String result = JSON.toJSONString(AjaxPubResponse.error("2003", "未获取到许可"));
//                String result = JSONObject.fromObject(AjaxPubResponse.error("100", "failure")).toString();
                output(response, result);
            }
        } catch (Throwable e) {
            e.printStackTrace();
        }
        log.info("flag={},obj={}",flag,obj);
//        System.out.println("flag=" + flag + ",obj=" + obj);
        return obj;
    }


    public void output(HttpServletResponse response, String msg) throws IOException {
        response.setContentType("application/json;charset=UTF-8");
        ServletOutputStream outputStream = null;
        try {
            outputStream = response.getOutputStream();
            outputStream.write(msg.getBytes("UTF-8"));
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            outputStream.flush();
            outputStream.close();
        }
    }

}


使用方法,把@RateLimitAspect 注解添加到需要限流的API接口上即可,如
添加到@GetMapping 或 @PostMapping上

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

ThinkPet

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

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

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

打赏作者

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

抵扣说明:

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

余额充值