Spring MVC – measure length of incoming requests of type x-www-form-urlencoded
I’m using Spring Boot 2.7.18 and Spring MVC.
I made a OncePerRequestFilter
that counts the bytes passing through the InputStream of each request, by “hijacking” the original InputStream and replacing it with an implementation that does the counting as the stream is being read from.