这是我的 struts.xml 的一部分:
<constant name="struts.custom.i18n.resources" value="global" />
和
<action name="picture_save" method="pictureSave" class="PictureActionBean">
<interceptor-ref name="fileUpload">
<param name="maximumSize">
2097152
</param>
<param name="allowedTypes">
image/bmp,image/gif,image/jpeg,image/jpg,image/png
</param>
</interceptor-ref>
<interceptor-ref name="defaultStack"></interceptor-ref>
<result name="success" type="redirect">picture</result>
<result name="error">error</result>
</action>
我的 global.properties 文件直接存储在 src/ 中,它包含以下内容:
struts.messages.error.uploading=Upload failed
struts.messages.error.file.too.large=Upload file is too large
struts.messages.error.content.type.not.allowed=Wrong file type uploaded
这是我在jsp中显示错误的方式:
<s:fielderror />
目前,当我上传一个太大的文件时,例如,我收到错误:
请求被拒绝,因为其大小 (6561343) 超过了配置的最大值 (2097152)
我想要做的是让它说“上传的文件太大”而不是上面的消息。有什么简单的方法可以做到这一点?
编辑1:
我正在使用 struts 版本 2.1.8.1
编辑2:
另一件事是,当我添加:
<result name="input" type="redirect">error</result>
到我的 struts.xml 然后根本没有错误显示。这是什么原因?