Required MultipartFile parameter 'file' is not present in spring mvc

后端 未结 3 647
忘掉有多难
忘掉有多难 2020-12-10 12:15

I am trying to add feature of uploading picture to my spring mvc application.

jsp part:

...
相关标签:
3条回答
  • 2020-12-10 12:20

    For those, who cannot find a suitable solution, please do not forget to add

    spring.http.multipart.enabled=true
    

    to your configuration file

    0 讨论(0)
  • 2020-12-10 12:30

    You have not specified the name attribute , @RequestParam("textFile") requires name ,

     <input type="file" class="file" name="textFile"/>
    
    0 讨论(0)
  • 2020-12-10 12:43

    add name attribute to "file" input tag

    <input type="file" class="file" name="file"/>
    
    0 讨论(0)
提交回复
热议问题