본문 바로가기

프로그램

[SPRING]MULTIPART 처리

반응형

스프링(Spring) 멀티파트(Multipart) 처리

 


설정

<beans:bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

    <beans:property name="maxUploadSize" value="2000000"></beans:property>

</beans:bean>


 

Multipart bean 등록 시 자동으로 요청이 multipart 일 경우 감싸주는 작업을 한다고 한다.


다만 궁금한게 왜 꼭 IDmultipartResolver 로 해야지만 작동하는지 의문이다.

(ID를 다른 이름으로 했더니 안되었던거 같음.ㅠㅠ) 



참고 url

http://netholic.tistory.com/21

http://winmargo.tistory.com/102

http://dukeom.wordpress.com/2011/08/25/spring3-file-upload-%EA%B5%AC%ED%98%84/