I'm new to spring and i'm currently trying to create a file upload mechanism.
I've read the documentation regarding file upload (using MultipartResolver), and the documentation regarding validation, but I can't put the two pieces together.
Here's what i'd like to have :
This throws aCode:@RequestMapping(method = RequestMethod.POST) public String handleFormUpload( @RequestParam("file") MultipartFile file , @RequestParam("name") String name, Errors validationErrors)
So, i've tried adding all kind of things from Model to Object right before the "Errors" parameter without any luck.Code:An Errors/BindingResult argument is expected to be immediately after the model attribute argument in the controller method signature
Basically what i'd like is to write an error back in my form if anything is wrong with the file using
Code:<form:errors path="file" cssClass="errors"/>


Reply With Quote
