org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException:
the request was rejected because its size (110862330) exceeds the configured maximum (31457280)
解决方案(主要是修改application.yml对应的配置):
如果觉得300MB不够的话,可以往上调。@H_404_1@
@H_404_16@spring: http: multipart: enabled: true@H_404_16@ max-file-@H_404_16@size: 300MB max-request-size: 300MB
@H_404_1@