Service Throttling ability in Spring Boot

前端 未结 1 1584
自闭症患者
自闭症患者 2020-12-18 23:55

Is there any way to achieve the service throttling ability to the rest services in Spring, particular with Spring boot.

The Expectation here is: My

相关标签:
1条回答
  • 2020-12-19 00:07

    There is a fairly new opensource project which handles this:

    https://github.com/weddini/spring-boot-throttling

    Declarative approach of throttling control over the Spring services. @Throttling annotation helps you to limit the number of service method calls per java.util.concurrent.TimeUnit for a particular user, IP address, HTTP header/cookie value, or using Spring Expression Language (SpEL).

    0 讨论(0)
提交回复
热议问题