您好,登錄后才能下訂單哦!
SpringBoot利用限速器RateLimiter怎么實現單機限流,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
參考開源項目https://github.com/xkcoding/spring-boot-demo
在系統運維中, 有時候為了避免用戶的惡意刷接口, 會加入一定規則的限流, 本Demo使用速率限制器com.xkcoding.ratelimit.guava.annotation.RateLimiter實現單機版的限流
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency>
server: port: 8080 servlet: context-path: /demo
@SpringBootApplication public class SpringBootDemoRatelimitGuavaApplication { public static void main(String[] args) { SpringApplication.run(SpringBootDemoRatelimitGuavaApplication.class, args); } }
注意代碼里使用了 AliasFor 設置一組屬性的別名,所以獲取注解的時候,需要通過 Spring 提供的注解工具類 AnnotationUtils 獲取,不可以通過 AOP 參數注入的方式獲取,否則有些屬性的值將會設置不進去。
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface RateLimiter { int NOT_LIMITED = 0; /** * qps (每秒并發量) */ @AliasFor("qps") double value() default NOT_LIMITED; /** * qps (每秒并發量) */ @AliasFor("value") double qps() default NOT_LIMITED; /** * 超時時長,默認不等待 */ int timeout() default 0; /** * 超時時間單位,默認毫秒 */ TimeUnit timeUnit() default TimeUnit.MICROSECONDS; }
@Slf4j @Aspect @Component public class RateLimiterAspect { /** * 單機緩存 */ private static final ConcurrentMap<String, com.google.common.util.concurrent.RateLimiter> RATE_LIMITER_CACHE = new ConcurrentHashMap<>(); @Pointcut("@annotation(com.xkcoding.ratelimit.guava.annotation.RateLimiter)") public void rateLimit() { } @Around("rateLimit()") public Object pointcut(ProceedingJoinPoint point) throws Throwable { MethodSignature signature = (MethodSignature) point.getSignature(); Method method = signature.getMethod(); // 通過 AnnotationUtils.findAnnotation 獲取 RateLimiter 注解 RateLimiter rateLimiter = AnnotationUtils.findAnnotation(method, RateLimiter.class); if (rateLimiter != null && rateLimiter.qps() > RateLimiter.NOT_LIMITED) { double qps = rateLimiter.qps(); // TODO 這個key可以根據具體需求配置,例如根據ip限制,或用戶 String key = method.getDeclaringClass().getName() + StrUtil.DOT + method.getName(); if (RATE_LIMITER_CACHE.get(key) == null) { // 初始化 QPS RATE_LIMITER_CACHE.put(key, com.google.common.util.concurrent.RateLimiter.create(qps)); } // 嘗試獲取令牌 if (RATE_LIMITER_CACHE.get(key) != null && !RATE_LIMITER_CACHE.get(key).tryAcquire(rateLimiter.timeout(), rateLimiter.timeUnit())) { throw new RuntimeException("手速太快了,慢點兒吧~"); } } return point.proceed(); } }
@Slf4j @RestController public class TestController { /** * 接口每秒只能請求一次,不等待 * @return */ @RateLimiter(value = 1.0) @GetMapping("/test1") public Dict test1() { log.info("【test1】被執行了。。。。。"); return Dict.create().set("msg", "hello,world!").set("description", "別想一直看到我,不信你快速刷新看看~"); } /** * 接口每秒只能請求一次,等待一秒 * @return */ @RateLimiter(value = 1.0, timeout = 1,timeUnit = TimeUnit.SECONDS) @GetMapping("/test3") public Dict test3() { log.info("【test3】被執行了。。。。。"); return Dict.create().set("msg", "hello,world!").set("description", "別想一直看到我,不信你快速刷新看看~"); } }
springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。
看完上述內容,你們掌握SpringBoot利用限速器RateLimiter怎么實現單機限流的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。