MultipartException: Current request is not a multipart request

后端 未结 7 1018
一整个雨季
一整个雨季 2020-12-13 09:36

I am trying to make a restful controller to upload files. I have seen this and made this controller:

@RestController
public class MaterialController {

             


        
7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 09:41

    In application.properties, please add this:

    spring.servlet.multipart.max-file-size=128KB
    spring.servlet.multipart.max-request-size=128KB
    spring.http.multipart.enabled=false
    

    and in your html form, you need an : enctype="multipart/form-data". For example:

    Hope this help!

提交回复
热议问题