오류: 최대 업로드 크기 초과 파일 업로드 크기가 제한됨

948 단어

springboot 파일 업로드 크기 1M 이상, 이상
{ "timestamp": "2020-06-04T03:13:35.009+0000", "status": 500, "error": "Internal Server Error", "message": "Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 1048576 bytes.", "path": "/stander/stander/material/local/importMaterial" }
springBoot 버전 2.1.7
해결 버전 (구성 추가 없이 시작 클래스)
yml 파일 구성:
spring:
  servlet:
    multipart:
      max-file-size: 2048MB
      max-request-size: 2048MB

(만약 효력이 발생하지 않는다면 시스템에 게이트웨이,nginx 등도 설정해야 하는지를 고려해야 한다.)
여기에 게이트웨이 설정gateway를 추가해야 합니다. 파일 크기는 필요에 따라 설정할 수 있습니다
spring:
  servlet:
    multipart:
      max-file-size: 2048MB
      max-request-size: 2048MB

좋은 웹페이지 즐겨찾기