Spring upload file size limit
With Spring earlier than 4.0 the right properties are
multipart.maxFileSize
multipart.maxRequestSize
From Spring 4 these were changed to
spring.http.multipart.max-file-size
spring.http.multipart.max-request-size
This configuration worked for me:
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
Reference to docs: Tuning File Upload Limits
For me worked (in Spring Boot 2.0.0):
spring.servlet.multipart.max-file-size=-1