spring-boot-starter-rate-limiter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.amythlabs</groupId> <artifactId>spring-boot-starter-rate-limiter</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.amythlabs</groupId> <artifactId>spring-boot-starter-rate-limiter</artifactId> <version>0.1.0</version> <name>Rate Limiting Spring Boot Starter</name> <description>This project delivers a flexible, production-ready rate limiting solution for Spring Boot applications. It supports both monolithic setups (with fast in-memory Caffeine integration) and distributed microservice architectures (with Redis support) for both MVC and WebFlux.</description> <url>https://github.com/amythlabs/rate-limiter</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>amith</id> <name>Amith</name> <url>https://github.com/amythlabs</url> <organization>amythlabs</organization> <organizationUrl>https://github.com/amythlabs</organizationUrl> <roles> <role>lead</role> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:https://github.com/amythlabs/rate-limiter.git</connection> <developerConnection>scm:git:ssh://git@github.com/amythlabs/rate-limiter.git</developerConnection> <url>https://github.com/amythlabs/rate-limiter</url> </scm> <dependencies> <dependency> <groupId>io.github.amythlabs</groupId> <artifactId>rate-limiting-core</artifactId> <version>0.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.amythlabs</groupId> <artifactId>rate-limiting-spring-boot-autoconfigure</artifactId> <version>0.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>3.2.2</version> <scope>compile</scope> </dependency> </dependencies> </project>