springboot默认文件大小

springboot默认文件大小为1M,超过后会报异常:Maximum upload size exceeded; nested exception is java.lang.IllegalStateException

更改上传文件大小的配置如下:

spring.servlet.multipart.max-file-size = 500MB
spring.servlet.multipart.max-request-size = 600MB

你可能感兴趣的:(spring-boot)