2017-12-24 6 views
0

:봄 부팅 2.0.0.M6 및 파일 업로드 나는 다음과 같은 라인을 추가 한 2.0.0.M6 <code>application.properties</code> 나의 봄 부팅 이상 10메가바이트

spring.http.multipart.max-file-size=100MB 
spring.http.multipart.max-request-size=100MB 

하지만를 내 RestController에 업로드 할 때 21MB 파일은 다음 예외와 함께 실패합니다.

Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (21112803) exceeds the configured maximum (10485760) 

내 응용 프로그램을 Spring Boot와 함께 패키지 된 Embedded Tomcat에서 실행합니다.

최대 100MB의 파일 업로드를 허용하려면 응용 프로그램을 올바르게 구성하는 방법은 무엇입니까?

답변

3

the documentationits appendix에 나타낸 바와 같이, 올바른 특성은 spring.servlet.multipart.max-file-sizespring.servlet.multipart.max-request-size입니다.