gpt4 book ai didi

struts2 - 如何在struts 2中指定上传文件的大小限制?

转载 作者:行者123 更新时间:2023-12-01 14:19:24 33 4
gpt4 key购买 nike

我正在尝试将默认文件上传大小从2MB增加到10MB。
并在我的struts.xml文件中进行了一些更改。

<constant name="struts.multipart.maxSize" value="1000000" /> 


<interceptor-ref name="fileUpload">
<param name="maximumSize">500000</param>
</interceptor-ref>

到当前配置。但是属性对象的值为空!并且上传不成功。有人建议对此问题有任何解决方案。

最佳答案

您检查过应用程序服务器了吗?例如,Tomcat有其自己的文件上传限制(默认为2MB)。

在Tomcat的conf文件夹中的server.xml文件中,您必须添加具有最大文件大小(以字节为单位)的maxPostSize属性。对于10MB,将类似于:

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

我不太了解其他应用服务器的配置,但应该没有太大不同。

关于struts2 - 如何在struts 2中指定上传文件的大小限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6504129/

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