This means that when you have something like:
<form type="post" ...> <input name="something" value="someVal" type="text"/> </form>
in your HTML, if someVal is larger than 2 MB (for example, a very long string), only the first 2 MB of this data will be available when you execute request.getAttribute("something") in your servlet.
source share