springboot上传大文件时,报错:
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes.
需要在application.yaml
文件中添加下面的配置:
spring:
servlet:
multipart:
max-request-size: 500MB
max-file-size: 500MB
springboot上传大文件时,报错:
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes.
需要在application.yaml
文件中添加下面的配置:
spring:
servlet:
multipart:
max-request-size: 500MB
max-file-size: 500MB