<!-- 서버가 켜지면 읽게되는 설정 파일(web.xml 에 경로가 명시되어 있다.) -->
<!-- Root Context: defines shared resources visible to all other web components -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="UTF-8"/>
<property name="maxUploadSize" value="10000000"/>
<property name="maxInMemorySize" value="10000000"/>
</bean>
defaultEncoding : 인코딩은 뭘로 할 것인지?
maxUploadSize : 파일 업로드시 최대 사이즈는 얼마나 할 것인지?
maxInaMemorySize : 메모리 버퍼 용량
'Spring' 카테고리의 다른 글
| JSP Templates 셋팅 (0) | 2022.07.18 |
|---|---|
| Ajax (0) | 2022.05.27 |
| 기본 DB 설정하기 (0) | 2022.05.24 |
| 로그인 페이지 만들기 (0) | 2022.05.23 |
| pom.xml에 라이브러리 추가하기 (0) | 2022.05.20 |