gpt4 book ai didi

tomcat - POST 参数内容是否有最大尺寸?

转载 作者:行者123 更新时间:2023-11-28 21:43:35 25 4
gpt4 key购买 nike

我正在对 Java 应用程序进行故障排除,其中使用 HTTP POST 和 Servlet 在两个系统之间发送 XML。我怀疑问题是 XML 变得太大了。这可能是问题所在吗?有限制吗?

当它不起作用时,消费者端的request.getParameter("message")将返回null。这两个应用程序都在 TomCat 上运行。例如,大小为 1.73mb 的 XML 文档将无法通过。

最佳答案

根据 this <Connector> 的默认值为 2 MB .

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

编辑 Tomcat 的 server.xml。在<Connector>元素,添加属性 maxPostSize并设置更大的值(以字节为单位)以增加限制。

话虽如此,如果这是问题所在,您应该在 Post data too big在 tomcat 中

For Further Info

关于tomcat - POST 参数内容是否有最大尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2943477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com