I am trying to set maxFileSize but it is not honored
I am developing an application utilizing JHipster. I have added the following to my application-dev.yml file: spring: profiles: active: dev multipart: maxFileSize: -1 But I am still getting an error when I try to try to upload a file > 1MB: Caused by: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (20663006) exceeds the configured maximum (10485760) What am I missing? It seems this should be pretty straight forward. Update 1 I un-nested it from spring config as suggested by Andy, but still got the error. Updated yml