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 services are exposed to outside world, currently there are no restrictions on the number of service calls per second/min. We want to control this by putting the throttling limit.
- I have an alternative option, by tracking the requests in concurrent Hash Map or any caching mechanism.
But more interested in the way spring in considering this. I know that i can be able to do it in node.js / scala