Support repeatable RateLimiter annotations
Author: RobWinCreated Feb 14, 2020Updated Jun 23, 2026
Labelsenhancement
The RateLimiter annotation should be repeatable so that someone can define a rate limit per day and a rate limit per second on a method.
For example:
@RateLimiter(name = "perDayLimit")
@RateLimiter(name = "perSecondLimit")
@Component
public class DummyServiceImpl implements DummyService {Source: resilience4j/resilience4j