一、找到tomcat配置文件server.xml
二、设置数据请求大小
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
maxPostSize="-1"
redirectPort="8443" />
注:一般情况下 tomcat中可能没有maxPostSize="-1" ,新增一个就好了。-1表示不限制大小。
网友评论