得到訊息如下
the request was rejected because its size exceeds the configured maximum
原因就是檔案的SIZE太大了
兩種解決方式
1.設定所有檔案的大小上限
編輯struts.properties
修改struts.multipart.maxSize=16777216
或是
編輯struts.xml
加入
<constant name="struts.multipart.maxSize" value="16777216" />
2.設定單一檔案的大小上限
在要執行上傳的action中
加入interceptor
<interceptor-ref name="fileUpload">
<param name="maximumSize">5242880</param>
</interceptor-ref>