基于Redis、AOP吹缔、注解實(shí)現(xiàn)的單用戶限流

  • Redis簡介
  1. 使用內(nèi)存存儲商佑,使用單線程,采用IO多路復(fù)用模型厢塘,性能極好
  2. 支持String,Hash,List,Set,Zset等多種數(shù)據(jù)類型
  3. 支持key定時失效
  4. 可采用AOF茶没,RDB方式進(jìn)行持久化
  • AOP簡介
  1. 定義:面向切面編程,將跟業(yè)務(wù)邏輯無關(guān)的重復(fù)并且縈繞在方法周圍的代碼進(jìn)行抽取晚碾,提高了代碼的可重用性
  2. 常用注解:


    切面.PNG
  • 注解簡介
  1. 使用條件:定義注解抓半,聲明注解的生命周期、作用域格嘁,注解實(shí)現(xiàn)體
  2. 定義在自定義注解上的元注解:
    @Target:注解的作用域笛求,包含ElementType參數(shù)
public enum ElementType {
    /** Class, interface (including annotation type), or enum declaration */
    TYPE,//作用域在接口、類、枚舉探入、注解

    /** Field declaration (includes enum constants) */
    FIELD,//作用域在字段狡孔、枚舉的常量

    /** Method declaration */
    METHOD,//作用域在方法

    /** Formal parameter declaration */
    PARAMETER,//作用域在方法參數(shù)

    /** Constructor declaration */
    CONSTRUCTOR,//作用域在構(gòu)造器

    /** Local variable declaration */
    LOCAL_VARIABLE,//作用域在局部變量

    /** Annotation type declaration */
    ANNOTATION_TYPE,//作用域在注解

    /** Package declaration */
    PACKAGE,//作用域在包

    /**
     * Type parameter declaration
     *
     * @since 1.8
     */
    TYPE_PARAMETER,//作用域在類型參數(shù)

    /**
     * Use of a type 
     *
     * @since 1.8
     */
    TYPE_USE//作用域在使用類型的任何地方
}

@Retention:注解的作用域,包含RetentionPolicy參數(shù)

/**
     * Annotations are to be discarded by the compiler.
     */
    SOURCE,//存活在源文件中

    /**
     * Annotations are to be recorded in the class file by the compiler
     * but need not be retained by the VM at run time.  This is the default
     * behavior.
     */
    CLASS,//存活在字節(jié)碼文件中

    /**
     * Annotations are to be recorded in the class file by the compiler and
     * retained by the VM at run time, so they may be read reflectively.
     *
     * @see java.lang.reflect.AnnotatedElement
     */
    RUNTIME//存活在代碼運(yùn)行期間

@Inherited:允許子類繼承父類的注解
@Documented:此注解會包含在javadoc中

  • 代碼實(shí)現(xiàn)
    定義注解:
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RestrictAccess {
    /**
     * 限制時間蜂嗽,單位是毫秒
     */
    long ttl() default 0;

    /**
     * 限制時間內(nèi)的訪問次數(shù)
     */
    int accessFrequency();
}

RedisTemplate對象的配置

@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate<String,Integer> redisTemplate(RedisConnectionFactory redisConnectionFactory){
        final RedisTemplate<String,Integer> redisTemplate = new RedisTemplate();
        redisTemplate.setConnectionFactory(redisConnectionFactory);
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(new GenericToStringSerializer<Integer>(Integer.class));
        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }
}

切面類

/**
 * 單用戶限流切面
 */
/**
 * 單用戶限流切面
 */
@Aspect
@Component
@RequiredArgsConstructor
@Slf4j
public class RestrictAccessAspect {
    private final RedisTemplate<String,Integer> redisTemplate;
    private static Integer INIT_VALUE = 1;
    /**
     * 用戶登錄的令牌
     */
    private static final String USER_TOKEN = "token";

    @Around("@annotation(cn.juh.annocation.RestrictAccess)")
    public Object RestrictAccessFrequency(ProceedingJoinPoint point) throws Throwable {
        //獲取當(dāng)前線程的訪問對象
        HttpServletRequest request = WebUtils.getHttpServletRequest();
        //獲取訪問路徑
        String requestURI = request.getRequestURI();
        //獲取用戶token
        String token = request.getParameter(USER_TOKEN);
        //存在redis中的key
        String key = RedisConstant.KeyPrefix.RESTRICT_ACCESS.code() + requestURI + ":" + token;

        MethodSignature sign = (MethodSignature) point.getSignature();
        Method method = sign.getMethod();
        //獲取方法上的注解
        RestrictAccess annotation = method.getAnnotation(RestrictAccess.class);
        int accessFrequency = annotation.accessFrequency();
        long ttl = annotation.ttl();

        //從redis中獲取用戶再限定時間內(nèi)訪問接口的次數(shù)
        Integer value = redisTemplate.opsForValue().get(key);
        if (Objects.nonNull(value) && value >= accessFrequency){
            return "您的操作過于頻繁苗膝,請待會再試";
        }

        if (Objects.isNull(value)){
            //不存在key則設(shè)置初始值并且設(shè)置過期時間
            redisTemplate.opsForValue().set(key,INIT_VALUE,ttl, TimeUnit.MILLISECONDS);
        }else {
            //存在則將訪問次數(shù)+1
            redisTemplate.opsForValue().increment(key);
        }

        //執(zhí)行接口邏輯
        return point.proceed();
    }

}

獲取web對象工具

public class WebUtils {
    public static ServletRequestAttributes getServletRequestAttributes() {
        return (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
    }

    /**
     * 得到當(dāng)前線程的請求對象
     *
     * @return
     */
    public static HttpServletRequest getHttpServletRequest() {
        return getServletRequestAttributes().getRequest();
    }

    /**
     * 得到當(dāng)前線程的響應(yīng)對象
     *
     * @return
     */
    public static HttpServletResponse getHttpServletResponse() {
        return getServletRequestAttributes().getResponse();
    }

}

測試接口

/**
 * 控制器
 */
@RestController
public class TestController {
    @RequestMapping("/test")
    @RestrictAccess(ttl = 10000,accessFrequency = 1)
    public Object first(String token) {
        return "test";
    }
}

正常訪問:


正常訪問.PNG

限流:


限流.PNG
  • 代碼邏輯
    程序執(zhí)行邏輯.PNG
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市植旧,隨后出現(xiàn)的幾起案子辱揭,更是在濱河造成了極大的恐慌,老刑警劉巖病附,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件问窃,死亡現(xiàn)場離奇詭異,居然都是意外死亡胖喳,警方通過查閱死者的電腦和手機(jī)泡躯,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門贮竟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來丽焊,“玉大人,你說我怎么就攤上這事咕别〖冀。” “怎么了?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵惰拱,是天一觀的道長雌贱。 經(jīng)常有香客問我,道長偿短,這世上最難降的妖魔是什么欣孤? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮昔逗,結(jié)果婚禮上降传,老公的妹妹穿的比我還像新娘。我一直安慰自己勾怒,他們只是感情好婆排,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著笔链,像睡著了一般段只。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上鉴扫,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天赞枕,我揣著相機(jī)與錄音,去河邊找鬼。 笑死炕婶,一個胖子當(dāng)著我的面吹牛谍椅,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播古话,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼雏吭,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了陪踩?” 一聲冷哼從身側(cè)響起杖们,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎肩狂,沒想到半個月后摘完,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡傻谁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年孝治,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片审磁。...
    茶點(diǎn)故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡谈飒,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出态蒂,到底是詐尸還是另有隱情杭措,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布钾恢,位于F島的核電站手素,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏瘩蚪。R本人自食惡果不足惜泉懦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望疹瘦。 院中可真熱鬧崩哩,春花似錦、人聲如沸拱礁。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽呢灶。三九已至吴超,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間鸯乃,已是汗流浹背鲸阻。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工跋涣, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鸟悴。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓陈辱,卻偏偏與公主長得像,于是被迫代替她去往敵國和親细诸。 傳聞我的和親對象是個殘疾皇子沛贪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評論 2 351

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