我使用<t:inputFileUpload
上傳文件,所有工作正常,但是當文件大於web.xml中設置的值時,它不會輸出任何錯誤或警告消息。 我的代碼:使用tomahawk上傳文件 - 顯示錯誤信息的問題
<h:form id="uploadForm" enctype="multipart/form-data">
<t:inputFileUpload id="fileupload" accept="image/*" storage="file"
value="#{fileUpload.uploadedFile}" styleClass="fileUploadInput"
required="true" validator="epacient.FileUploadValidator" validatorMessage="Napacna vrsta ali prevelika datoteka."/>
<h:message for="fileupload" style="color: red;" />
<br />
<h:commandButton value="Upload" id="fileUploadButton" action="#{fileUpload.upload}" />
<h:message for="uploadForm" style="color: red;" />
</h:form>
如果文件是大的,應該在<h:message
標籤寫錯誤,是我錯了嗎?
我該如何解決問題?
最好的問候