mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-23 10:22:01 +00:00
19 lines
564 B
Java
19 lines
564 B
Java
![]() |
package stirling.software.SPDF.config.security;
|
||
|
import org.springframework.scheduling.annotation.Scheduled;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
@Component
|
||
|
public class RateLimitResetScheduler {
|
||
|
|
||
|
private final IPRateLimitingFilter rateLimitingFilter;
|
||
|
|
||
|
public RateLimitResetScheduler(IPRateLimitingFilter rateLimitingFilter) {
|
||
|
this.rateLimitingFilter = rateLimitingFilter;
|
||
|
}
|
||
|
|
||
|
@Scheduled(cron = "0 0 0 * * MON") // At 00:00 every Monday
|
||
|
public void resetRateLimit() {
|
||
|
rateLimitingFilter.resetRequestCounts();
|
||
|
}
|
||
|
}
|