您的位置:首页 > 其它

jetty9请求form表单太大

2016-05-17 20:27 288 查看



 

 

jetty默认的表单最大size为200000,

 

参考:http://www.eclipse.org/jetty/documentation/current/setting-form-size.html

 

For All Apps on a Server

Set an attribute on the Server instance for which you want to modify the maximum form content size:

<Configure class="org.eclipse.jetty.server.Server">
<Call name="setAttribute">
<Arg>org.eclipse.jetty.server.Request.maxFormContentSize</Arg>
<Arg>200000</Arg>
</Call>
</Configure>

 

-------------------------------------------------------------------------------------------------------

 

解决方法:

修改/opt/jetty9/etc/jetty.xml配置文件,在Configure中添加如下

<Call name="setAttribute">
<Arg>org.eclipse.jetty.server.Request.maxFormContentSize</Arg>
<Arg>500000</Arg>
</Call>

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: