spring-guides / gs-uploading-files

Uploading Files :: Learn how to build a Spring application that accepts multi-part file uploads.
http://spring.io/guides/gs/uploading-files/
Apache License 2.0
469 stars 503 forks source link

Max file/request size config item #42

Closed mpesa1975 closed 1 year ago

mpesa1975 commented 6 years ago

Hi, I found one discrepancy at https://spring.io/guides/gs/uploading-files/:

spring.servlet.multipart.max-file-size=128KB spring.servlet.multipart.max-request-size=128KB

versus

spring.http.multipart.max-file-size spring.http.multipart.max-request-size

Which one is correct?

gregturn commented 6 years ago

spring.http.multpart.* has been deprecated.

mpesa1975 commented 6 years ago

Since which version?

gregturn commented 6 years ago

This probably occurred in Boot 2.0. They went through and normalized a lot of properties.