I\'m developing application based on Spring Boot and AngularJS using JHipster. My question is how to set max size of uploading files?
If I\'m trying
put this in your application.yml file to allow uploads of files up to 900 MB
application.yml
server: servlet: multipart: enabled: true max-file-size: 900000000 #900M max-request-size: 900000000