We are maintaining a spring mvc (2.5.6) web application running on Tomcat 6.0.14
There is a bug in our app that caused one text field to increase its size resulting in a post of 3.000.000 bytes of text.
We will fix this bug, but what bothers me is that when the post size gets this big the method ServletRequest.getParameter fails silently and returns null. There is no sign of any error on the logs.
Is this spring mvc fault?
Is this a tomcat misconfiguration?
Why can't I see any exception in the logs?