gpt4 book ai didi

java - 表格太大异常

转载 作者:IT老高 更新时间:2023-10-28 21:13:58 25 4
gpt4 key购买 nike

当我使用 post 请求发送大文件时,系统显示异常:

java.lang.IllegalStateException: Form too large1105723>200000
at org.mortbay.jetty.Request.extractParameters(Request.java:1404)
at org.mortbay.jetty.Request.getParameter(Request.java:749)......

当我在 Google 中搜索此帮助时,他们会提供一些帮助,例如, webappcontext.setMaxFormContentSize(5000000);

我正在使用此代码,但问题没有解决

我也在使用代码 jettyServer.setAttribute("org.mortbay.jetty.Request.maxFormContentSize", 5000000);

但没有结果

注意:-我使用的是 Jetty-6.1.0

最佳答案

尝试通过 jetty.xml

设置系统属性
    <Call class="java.lang.System" name="setProperty">
<Arg>org.mortbay.jetty.Request.maxFormContentSize</Arg>
<Arg>500000</Arg>
</Call>

好的,您可以从您的网络应用程序配置它

在您的 Web 应用程序中添加 WEB-INF/jetty-web.xml 文件 并在该文件中配置参数:

  <?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN"
"http://jetty.mortbay.org/configure.dtd">

<Configure id="WebAppContext" class="org.mortbay.jetty.webapp.WebAppContext">
<Set name="maxFormContentSize" type="int">600000</Set>
</Configure>

Document

版本 7 或更高版本

自版本 7 起,Jetty 的类已移至不同的包。您必须将 org.mortbay... 替换为 org.eclipse...(感谢 David 的评论)。

关于java - 表格太大异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3861455/

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