tomcat nginx 默认的 post 大小限制

发布于 2024-10-04 12:51:29 字数 1583 浏览 9 评论 0

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

tomcat:默认大小 2097152 ,当 maxPostSize=负数 时,不限制; maxPostSize=20971520 时,为 20M

  • nginx:默认的最大请求 body 大小为 8m,修改设置 client_max_body_size=100m;
  • resin:没有发现默认限制请求大小的地方!

Tomcat 配置文件 server.xml ,修改 maxPostSize,然后保存

<Connector port="8080" protocol="HTTP/1.1"  
connectionTimeout="20000"  
redirectPort="8443"  
maxPostSize="1073741824"/> 

tomcat.maxPostSize 在这种 content-type 下才会起作用: application/x-www-form-urlencoded

tomcat7.0.63 之前:

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).

设置为 0 和负数均可以代表不限制。

tomcat7.0.63(包含)之后:

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 zero. If not specified, this attribute is set to 2097152 (2 megabytes).
不可以设置为 0,只能是负数代表不限制

Nginx 的 413 request entiry too large
tomcat 返回 400
tomcat 请求端口都加上 maxPostSize="0"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

不醒的梦

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

謌踐踏愛綪

文章 0 评论 0

开始看清了

文章 0 评论 0

高速公鹿

文章 0 评论 0

alipaysp_PLnULTzf66

文章 0 评论 0

热情消退

文章 0 评论 0

白色月光

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文