EB transmission, the foreground parameter data volume is too large "JSON format string", may reach a few m,ajax call the background method, cannot be passed
Problem analysis: Tomcat on the default post commit size of 2M, about, more than this size, will pass the value is unsuccessful
Workaround: Modify the limit size of the post submission size and modify it on Server.xml as follows:
<connector port= "8080" protocol= "http/1.1"
Connectiontimeout= "2000"
Redirectport= "8443"
Uriencoding= "UTF-8"
Maxthreads= "3000"
Compression= "on" compressablemimetype= "Text/html,text/xml"
Maxpostsize= "10240"/>
<connection port= "8009" enablelookups= "false" redirectport= "8443" debug= "0" protocol= "ajp/1.3"/>
Where parameter maxpostsize= "10240" is the limit to the size of the POST request parameter, tomcat7.0.63 before the version set to 0 and negative numbers can represent unrestricted. However, the version after 7.0.63 is only set to a negative number to represent unlimited data size
Web transport, foreground parameter data volume is too large [JSON format string], may reach a few m,ajax call the background method