무소의 뿔처럼

파일 업로드 본문

알아두기/Spring

파일 업로드

값을변경 2023. 3. 6. 12:37

Servlet 3.0 전

1.commons의 파일 업로드

2.cos.jar

Spring Legacy Project로 생성되는 프로젝은 Servlet 2.5가 기준

 

https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload/1.3.3

<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
<dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.3.3</version>
</dependency>

 

 

더보기

Servlet 3.0 후 (Tomcat 7.0)

기본적으로 업로드되는 파일을 처리할 수 있는 기능이 추가되어 있음.

 

 

 

'알아두기 > Spring' 카테고리의 다른 글

MyBatis 관련 라이브러리  (0) 2023.03.19
Jackson Databind  (0) 2023.03.05
@InitBinder  (0) 2023.03.04
스트링부트) 오류 없이 잘 돌아가는데 DB에는 저장이 안된다. 혹시?  (0) 2022.09.03
스프링부트) 페이징..  (2) 2022.08.23
Comments