Spring boot 设置文件上传大小限制注意事项

版本为 2.0

spring:
  servlet:
    # 文件上传大小限制
    multipart:
      max-file-size: 2MB
      max-request-size: 2MB

单位需要全大写,否则报错或者直接写完整的数字大小

Description:

Failed to bind properties under 'spring.servlet.multipart.max-file-size' to org.springframework.util.unit.DataSize:

    Property: spring.servlet.multipart.max-file-size
    Value: 2Mb
    Origin: "spring.servlet.multipart.max-file-size" from property source "bootstrapProperties"
    Reason: failed to convert java.lang.String to org.springframework.util.unit.DataSize

Action:

Update your application's configuration

你可能感兴趣的:(Springboot)