Spring

[Spring] 업로드 파일 크기를 늘리는법 및 WebConfing 파일에 대한 글

IT공부블로그 2020. 10. 20. 19:35
728x90
반응형

WebConfig


웹 응용프로그램에 대한 설정 정보를 담고 있는 파일

xml 형식


업로드 파일크기 설정


Web.config 파일에

<httpRuntime executionTimeout="3600" maxRequestLength="2048"/>

<requestLimits maxAllowedContentLength="20480000"/>


위 같은 부분있는데 length 부분을 변경해주면 업로드 파일크기를 수정할수있다

maxRequestLength은 KB이며

maxAllowedContentLength은 Bytes 이다

728x90
반응형