FastDFS文件上传大小限制

1.文件上传限制:
对于Spring1.4之前的版本:

multipart:
  maxFileSize: 50MB
  maxRequestSize: 50MB 

对于Spring 1.4 之后的版本:

spring:
  http:
    multipart:
      maxFileSize: 50Mb
      maxRequestSize: 50Mb

你可能感兴趣的:(FastDFS文件上传大小限制)