I am trying to add feature of uploading picture to my spring mvc application.
jsp part:
...
For those, who cannot find a suitable solution, please do not forget to add
spring.http.multipart.enabled=true
to your configuration file
You have not specified the name
attribute , @RequestParam("textFile") requires name ,
<input type="file" class="file" name="textFile"/>
add name attribute to "file" input tag
<input type="file" class="file" name="file"/>