Google News
logo
Java Spring MVC - Interview Questions
What is MultipartResolver? When should we use this?
We use this interface to upload files. Spring Framework provides two implementations for this interface
 
* CommonsMultipartResolver : For Apache Commons FileUpload.
* StandardServletMultipartResolver : For the Servlet 3.0+ Part API

We can use either one of this to implement file upload feature in our application.
Advertisement