Max limit of MultipartFile in Spring Boot

前端 未结 5 759
予麋鹿
予麋鹿 2020-11-29 01:52

Is there a maximum file size that spring boot can handle in a MultipartFile upload process. I know that I can set the maxFileSize in the property l

5条回答
  •  暖寄归人
    2020-11-29 02:37

    In my application.yml file

    spring:
     servlet:
        multipart:
          max-file-size: 15MB
          max-request-size: 15MB
    

    And If you have application.properties file

    spring.servlet.multipart.max-file-size = 15MB
    spring.servlet.multipart.max-request-size = 15MB
    

    Even You can set file size to infinite

    spring.servlet.multipart.max-file-size =-1
    spring.servlet.multipart.max-request-size =-1
    

提交回复
热议问题