SpringBoot2.0 设置文件上传大小限制

2019/1/4 posted in  SpringBoot

在SpringBoot2.0之前,使用的是

spring:
  http:
   multipart:
    max-file-size: 100MB 
    max-request-size: 1000MB

在SpringBoot2.0后是

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