我需要检查用户是否从 jsp 页面提供了文件。
代码如下。
当我在调试模式下运行时,文件(MultiPartFile)不为空,尽管未提供该文件。
我想对所有内容使用基于注释的验证。
任何帮助,将不胜感激。
<form:form modelAttribute="timeStampIssueParam"
action="${pageContext['request'].contextPath}/timestamp/issue"
method="post" enctype="multipart/form-data">
<fieldset>
<p>
<form:label for="file" path="file">PDF Original</form:label>
<br />
<form:input path="file" type="file"/>
</p>
<p>
@NotNull
private List<MultipartFile> file
public void issue(HttpServletResponse response, @Valid TimeStampIssueParam tsIssueParam, BindingResult result) throws JsonGenerationException, JsonMappingException, IOException {