I\'m using Spring Boot for my web application and I\'m trying to configure the maxUploadSize of Spring\'s CommonMultipartResolver. Currently, it seems to be limited by a Spr
With spring-boot 1.5.3 you should use the following code in application.yml
spring: http: multipart: max-file-size: 10MB max-request-size: 10MB