记一个spring boot max-file-size的变化

记一个max-file-size的配置变化,在几个大版本中,配置发生了变化。

项目报错

the request was rejected because its size (22970849) exceeds the configured maximum (10485760)

1.3.3.RELEASE

multipart.max-file-size=1Mb # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
multipart.max-request-size=10Mb # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.

1.4.7.RELEASE ~ 1.5.12.RELEASE (可能有其他版本)

spring.http.multipart.max-file-size=1MB # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
spring.http.multipart.max-request-size=10MB # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.

2.0.7.RELEASE (也许2.x更早版本也是一样)

spring.servlet.multipart.max-file-size=1MB # Max file size. Values can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes, respectively.
spring.servlet.multipart.max-request-size=10MB # Max request size. Values can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes, respectively.

你可能感兴趣的:(springboot,java)