About javax.servlet.ServletRequest.getParameter:
java.lang.String getParameter(java.lang.String name)
If the parameter data was sent in the request body, such as occurs with an HTTP POST request, then reading the body directly via getInputStream()
orgetReader()
can interfere with the execution of this method.