错误重现:
org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field imageContent exceeds its maximum permitted size of 1048576 bytes.
错误原因:
上传的文件超过了最大文件限制
解决方案:
在application.yml文件中配置,修改最大请求支持即可
spring:
#设置文件请求最大请求可以50MB
# servlet:
# multipart:
# max-file-size: 50MB
# enabled: true