Struts上传文件限制有关问题

Struts上传文件限制问题在struts2中用common-fileupload上传文件有文件大小限制, 限制为2M。这个限制可以从

Struts上传文件限制问题
在struts2中用common-fileupload上传文件有文件大小限制, 限制为2M。这个限制可以从

struts2-core-2.0.11.1.jar/org/apache/struts/default.properties中struts.multipart.maxSize=2097152得知,可以修改default.properties文件或者写struts.properties文件或者struts.xml文件。在struts.xml中添加一个常量配置

<constant name="struts.multipart.maxSize" value="20971520"/>就可以上传20M大小的文件了。