Is there a maximum file size that spring boot can handle in a MultipartFile upload process. I know that I can set the maxFileSize in the property l
In my application.yml file
spring:
servlet:
multipart:
max-file-size: 15MB
max-request-size: 15MB
And If you have application.properties file
spring.servlet.multipart.max-file-size = 15MB
spring.servlet.multipart.max-request-size = 15MB
Even You can set file size to infinite
spring.servlet.multipart.max-file-size =-1
spring.servlet.multipart.max-request-size =-1