FASTDFS对于Spring 1.3 和1.4的文件上传大小坑

1.文件上传限制:

    对于Spring1.4之前的版本:

multipart:

  maxFileSize: 50MB

  maxRequestSize: 50MB 

 

对于Spring 1.4 之后的版本: 

spring:

  http:

    multipart:

      maxFileSize: 50Mb

      maxRequestSize: 50Mb

取消文件上传大小限制:

spring:

  http:

    multipart:

      maxFileSize: -1

猜你喜欢

转载自blog.csdn.net/weixin_38608626/article/details/82872710
1.3
今日推荐