Spring Mvc Multiple File Upload With Html5 Multiple File Form Feature
I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping. Here's what I did and my configuration. Html5 form :
Solution 2:
Have included commons-fileupload dependency?
<dependency><groupId>commons-fileupload</groupId><artifactId>commons-fileupload</artifactId><version>1.3</version></dependency>
I tested the fileupload works fine even with ArrayList as the parameter type on the controller handler
Post a Comment for "Spring Mvc Multiple File Upload With Html5 Multiple File Form Feature"