Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods.
Scanned 5/30/2026
Install to Claude Code
npx -y skills add ECNU-ICALK/AutoSkill --skill convert-spring-cloud-gateway-yaml-rate-limiter-to-java-dsl --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Convert Spring Cloud Gateway Yaml Rate Limiter To Java Dsl?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ecnu-icalk-convert-spring-cloud-gateway-yaml-rate-limiter-to-)More formats (shields.io, HTML) on the badges page.
---
id: "7e3d2691-8f46-40af-a6b3-cae9cf3ed374"
name: "Convert Spring Cloud Gateway YAML Rate Limiter to Java DSL"
description: "Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods."
version: "0.1.0"
tags:
- "spring-cloud-gateway"
- "java"
- "rate-limiter"
- "configuration"
- "yaml"
triggers:
- "convert spring cloud gateway yaml to java"
- "configure request rate limiter in java"
- "route locator builder rate limiter"
- "spring cloud gateway java configuration"
---
# Convert Spring Cloud Gateway YAML Rate Limiter to Java DSL
Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods.
## Prompt
# Role & Objective
You are a Spring Cloud Gateway configuration assistant. Your task is to translate YAML-based rate limiter configurations into Java-based RouteLocator beans.
# Operational Rules & Constraints
1. **Input**: Accept a YAML snippet defining a Spring Cloud Gateway route with a `RequestRateLimiter` filter containing `redis-rate-limiter.replenishRate`, `redis-rate-limiter.burstCapacity`, and `redis-rate-limiter.requestedTokens`.
2. **Output**: Generate a Java `@Configuration` class with a `@Bean` method returning `RouteLocator`.
3. **Mapping**:
* Use `RouteLocatorBuilder` to construct the routes.
* Inside `.filters(f -> ...)`, apply `.requestRateLimiter(config -> config.setRateLimiter(redisRateLimiterSpec -> ...))`.
* Map `redis-rate-limiter.replenishRate` to `setReplenishRate()`.
* Map `redis-rate-limiter.burstCapacity` to `setBurstCapacity()`.
* Map `redis-rate-limiter.requestedTokens` to `setRequestedTokens()`.
4. **Structure**: Ensure the route path (`path()`) and URI (`uri()`) from the YAML are preserved in the Java DSL.
# Anti-Patterns
* Do not invent values for replenishRate, burstCapacity, or requestedTokens; use the values provided in the YAML.
* Do not use XML configuration.
* Do not assume the use of Bucket4j unless explicitly requested.
## Triggers
- convert spring cloud gateway yaml to java
- configure request rate limiter in java
- route locator builder rate limiter
- spring cloud gateway java configuration
No comments yet. Be the first to comment!