FASTDFS for Spring 1.3 and 1.4 file upload size pit

 

1. File upload limit:

    For versions prior to Spring1.4:

multipart:

  maxFileSize: 50MB

  MaxRequestSize: 50MB 

 

For after the Spring 1.4 version: 

spring:

  http:

    multipart:

      maxFileSize: 50Mb

      MaxRequestSize: 50Mb

 

Cancel upload file size limit:

spring:

  http:

    multipart:

      maxFileSize: -1

 

 

Guess you like

Origin blog.csdn.net/weixin_38608626/article/details/82872710