[스프링/Spring] 단일파일 다중파일 업로드하기
[스프링/Spring] 단일파일 다중파일 업로드하기 파일 업로드를 구현해야하는 개발일이 생겨서 파일 업로드를 구현해보았습니다. 파일 업로드를 구현하기 위한 절차를 간략하게 정리해보았습니다.! 1. pom.xml설정 2. servlet-context.xml 설정 3. jsp 코드 작성 4. controller 코드 작성 pom.xml 설정 먼저 pom에 파일업로드를 하기 위한 dependency를 추가합니다. 저는 여기서 추가된 라이브러리를 통해 파일 업로드를 구현하였습니다. commons-fileupload commons-fileupload 1.3.2 commons-io commons-io 2.5 servlet-context.xml 설정 추가된 라이브러리에 bean설정을 진행합니다. maxUploadSi..