码迷,mamicode.com
首页 > 其他好文 > 详细

tomcat nginx默许的post大小限制

时间:2016-08-17 23:33:20      阅读:619      评论:0      收藏:0      [点我收藏+]

标签:tomcat post

tomcat nginx默认的post大小限制
   执行大文件上传,或者,大数据量提交时,当提交的数据大小超过一定限制时,发现后台从request取值的代码request.getParameter("message")返回值为null,原因是因为服务器对于提交的post请求的大小有一定的限制

tomcat:默认大小2097152,当maxPostSize=0时,不限制;maxPostSize=20971520时,为20M
nginx:默认的最大请求body大小为8m,修改设置client_max_body_size=100m;
resin:没有发现默认限制请求大小的地方!

tomcat:maxPostSize


The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing. The limit can be disabled by setting this attribute to a value less than or equal to 0. If not specified, this attribute is set to 2097152 (2 megabytes).


Nginx的"413 request entiry too large"

tomcat返回400

tomcat请求端口都加上maxPostSize="0"


本文出自 “秋天” 博客,请务必保留此出处http://zengfuqiu.blog.51cto.com/7895816/1839501

tomcat nginx默许的post大小限制

标签:tomcat post

原文地址:http://zengfuqiu.blog.51cto.com/7895816/1839501

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!