Spring,MyBatis 실무 과정 자료]CommonsFileUpload 준비





Spring,MyBatis 실무 과정 자료] CommonsFileUpload 준비


실무개발자를위한 실무교육 전문교육센터학원

www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.


CommonsFileUpload 준비



라이브러리 준비

<project xmlns="http://maven.apache.org/POM/4.0.0"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/maven-v4_0_0.xsd">

    <dependencies>

        ・・・생략

        

        <dependency>

            <groupId>commons-fileupload</groupId>

            <artifactId>commons-fileupload</artifactId>

            <version>1.2.2</version>

        </dependency>

        

        ・・・생략

    </dependencies>

</project>


servlet-context.xml 추가
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"> ・・・생략
    
    <!-- use file upload -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!– 업로드 가능한 최대 파일 사이즈(단위 바이트) -->
        <property name="maxUploadSize" value="${app.fileupload.maxSize}"/>
    </bean>
    
</beans>


+ Recent posts