Max limit of MultipartFile in Spring Boot

For those using Spring Boot 2.0 (as of M1 release), the property names have changed to:

spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB

Note the prefix is spring.servlet instead of spring.http.

Leave a Comment