SpringBoot2 中 spring.http.multipart.max-file-size 报错问题

由于springboot具有几个版本,不同版本对于文件上传最大限制的配置也有所不同。
所以要注意springboot本身的版本,不然会一直报错

# 在springboot1.3版本中:
multipart.maxFileSize

# 在springboot1.4与springboot1.5版本中:
spring.http.multipart.max-file-size

# 在springboot2.0版本中:
spring.servlet.multipart.max-file-size
servlet:
  multipart:
    enabled: true #开启文件上传
    max-file-size: 100GB #限制文件上传大小为100G
    max-request-size: 100GB #限制文件上传大小为100G
上一篇:org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded;


下一篇:Http Header里的Content-Type