Are there any methods or capabilities built in Java application servers (i.e. Weblogic or JBoss) or, probably, in load balancers (i.e. F5) to enable and configure HTTP requests throttling for my application?
Let's say, I have a Java web application with no throttling algorithms implemented in it. And I want to add a throttling feature to limit a number of requests to N per M seconds. One possible way is to use external (to my Java app) tools with such requests throttling abilities.
All I've found is about implementing own throttling mechanism in my application.
Partly similar questions: