mardi 31 mars 2015

Handling MultipartException with Spring Boot and display error page

I have a very simple file upload set up with Spring Boot. I was wondering if there was an easy way to display an error page when the maximum file size is exceeded.


I have uploaded a very simple example of what I'm trying to achieve on github.


Basically, the idea is to catch the MultipartException in a global Spring exception handler:



@ControllerAdvice
public class UploadExceptionHandler {

@ExceptionHandler(MultipartException.class)
public ModelAndView handleError(MultipartException exception) {
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("error", exception.getMessage());
modelAndView.setViewName("uploadPage");
return modelAndView;
}
}


The controller which handles the file upload is really simple:



@RequestMapping("/")
public String uploadPage() {
return "uploadPage";
}

@RequestMapping(value = "/", method = RequestMethod.POST)
public String onUpload(@RequestParam MultipartFile file) {
System.out.println(file.getOriginalFilename());
return "uploadPage";
}


And the uploadPage.html thymeleaf template associated with it too:



<!DOCTYPE html>
<html xmlns:th="http://ift.tt/wfNV60">
<head lang="en">
<title>Upload</title>
</head>
<body>

<div style="color: red" th:text="${error}" th:if="${error}">
Error during upload
</div>

<form th:action="@{/}" method="post" enctype="multipart/form-data">
<input type="file" id="file" name="file"/>
<button type="submit" name="save">Submit</button>
</form>
</body>
</html>


The idea is to display an error message in the same upload page when the file is too big.


It was my understanding that one would configure Spring's MultipartResolver to resolve exceptions lazily and be able to catch those exceptions at Spring's level (MVC exception handlers) but this code does not seem to help:



@Bean(name = DispatcherServlet.MULTIPART_RESOLVER_BEAN_NAME)
public StandardServletMultipartResolver multipartResolver() {
StandardServletMultipartResolver multipartResolver = new StandardServletMultipartResolver();
multipartResolver.setResolveLazily(true);
return multipartResolver;
}


So before I resort to extreme measures like a filter or extending the MultipartResolver...


Do you know a clean way to handle those exceptions with Spring MVC?


Aucun commentaire:

Enregistrer un commentaire