helio-starter-rate-limit-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cc.uncarbon.framework</groupId>
<artifactId>helio-starter-rate-limit-redis</artifactId>
<version>1.10.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>helio-starters</artifactId>
<groupId>cc.uncarbon.framework</groupId>
<version>1.10.0</version><!-- BATCH REPLACEMENT MARK -->
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>helio-starter-rate-limit-redis</artifactId>
<description>基于Redis实现的限流组件,内置简易的3种限流策略(全局限流、根据当前用户ID限流、根据客户端IP限流)</description>
<properties>
</properties>
<dependencies>
<!-- 脚手架starter -->
<dependency>
<groupId>cc.uncarbon.framework</groupId>
<artifactId>helio-core</artifactId>
</dependency>
<dependency>
<groupId>cc.uncarbon.framework</groupId>
<artifactId>helio-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>cc.uncarbon.framework</groupId>
<artifactId>helio-starter-redis</artifactId>
</dependency>
<!-- 仅 RateLimitByClientIPStrategy 需要该依赖,若不使用可排除 -->
<dependency>
<groupId>cc.uncarbon.framework</groupId>
<artifactId>helio-starter-web</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>