Multipart file maximum size exception - spring boot embbeded tomcat

后端 未结 6 1275
说谎
说谎 2021-01-04 20:03

I have set max file size to

multipart.maxFileSize: 1mb
multipart.maxRequestSize: 1mb

This is my controller :

@RequestMappi         


        
6条回答
  •  渐次进展
    2021-01-04 20:51

    Please add the below lines in application.properties for spring boot version -2.0.1.RELEASE

    spring.servlet.multipart.max-file-size=128MB
    spring.servlet.multipart.max-request-size=128MB
    spring.servlet.multipart.enabled=true
    

    This resolved my issue.

提交回复
热议问题