我目前有一个Spring MVC servlet,它处理通过初始表单页面上传的文件。
如果请求处理程序缺少某些要求,它已经对该文件进行了一些验证,但不幸的是,在处理实际发生之前,它无法轻易判断是否满足所有要求。
@RequestMapping(path = "/", method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public String submit(@Valid FormData form, BindingResult result, Model model) throws IOException, ParseException
{
if (result.hasErrors())
{
return "index";
}
processFile(form.getFile());
return "success";
}
如果在处理步骤中发生异常,我会在@ExceptionHandler
带注释的方法中处理它。但是,此方法需要第二行来显示JSP页面中的错误:
<form:input type="file" name="file" path="file" value=""/>
<form:errors path="file" element="label" class="error" for="file"/>
<c:if test="${not empty error}"><label class="error">${error}</label></c:if>
方法本身看起来像
@ExceptionHandler(Exception.class)
public String databaseError(Model model, Exception e)
{
model.addAttribute("formData", new FormData());
model.addAttribute("error", "File failed to process. Please verify the contents of the file.");
return "index";
}
有没有办法利用BindingResult
来处理异常作为验证错误,以避免出现冗余错误消息模板?
答案 0 :(得分:1)
您可以在请求处理方法中捕获异常,然后在catch子句中操作BindingResult。