파일업로드를 위해서는 몇가지 세팅이 필요합니다.
먼저, 아래에 있는 코드를 복사해서 pom.xml에 추가합니다.
pom.xml
Apache Commons FileUpload(1.3.3 버전)
1 2 3 4 5 6 | <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.3</version> </dependency> | cs |
Apache Commons IO(2.6 버전)
1 2 3 4 5 6 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> | cs |
위의 링크에서 'Apache Commons FileUpload', 'Apache Commons IO'를 검색해서 가져온 코드입니다.
servlet-context.xml
1 2 3 4 | <beans:bean id="commonsMultipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <beans:property name="maxUploadSize" value="20971520"></beans:property> <!-- 최대 업로드 파일 크기 --> <beans:property name="maxInMemorySize" value="10485760"></beans:property> <!-- 메모리에 최대로 저장할 수 있는 공간 --> </beans:bean> | cs |
파일 크기의 제한을 두기 위한 코드입니다.
최대 업로드 파일 크기는 20MB, 메모리에 최대로 저장할 수 있는 파일 크기는 10MB로 제한하였습니다.
1MB = 1,024KB
10MB = 10,485,760KB(1,024*1,024*10)
20MB = 20,971,520KB(1,024*1,024*20)
resources/fileUploadTest.jsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>fileUploadTest</title> </head> <body> <form action="/fileUploadTest.do" enctype="multipart/form-data" method="post"> <input type="file" name="file1"><p> <input type="file" name="file2"><p> <input type="submit" value="파일업로드"> </form> </body> </html> | cs |
파일 2개를 첨부하여 Controller에 전달하는 jsp입니다.
※ 파일처리를 하기 위해서는 enctype="multipart/form-data" method="post"를 꼭 기재해야 합니다.
FileController.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | @Controller public class FileController { @RequestMapping(value="/fileUploadTest.do") public String fileUploadTest(MultipartHttpServletRequest request ,Model model) { String rootUploadDir = "C:"+File.separator+"Upload"; // C:/Upload File dir = new File(rootUploadDir + File.separator + "testfile"); if(!dir.exists()) { //업로드 디렉토리가 존재하지 않으면 생성 dir.mkdirs(); } Iterator<String> iterator = request.getFileNames(); //업로드된 파일정보 수집(2개 - file1,file2) int fileLoop = 0; String uploadFileName; MultipartFile mFile = null; String orgFileName = ""; //진짜 파일명 String sysFileName = ""; //변환된 파일명 ArrayList<String> list = new ArrayList<String>(); while(iterator.hasNext()) { fileLoop++; uploadFileName = iterator.next(); mFile = request.getFile(uploadFileName); orgFileName = mFile.getOriginalFilename(); System.out.println(orgFileName); if(orgFileName != null && orgFileName.length() != 0) { //sysFileName 생성 System.out.println("if문 진입"); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMDDHHmmss-" + fileLoop); Calendar calendar = Calendar.getInstance(); sysFileName = simpleDateFormat.format(calendar.getTime()); //sysFileName: 날짜-fileLoop번호 try { System.out.println("try 진입"); mFile.transferTo(new File(dir + File.separator + sysFileName)); // C:/Upload/testfile/sysFileName list.add("원본파일명: " + orgFileName + ", 시스템파일명: " + sysFileName); }catch(Exception e){ list.add("파일 업로드 중 에러발생!!!"); } }//if }//while model.addAttribute("list", list); return "fileTest/fileResult"; } } | cs |
fileUploadTestjsp에서 받은 file들을 디렉토리에 저장하고, 저장된 파일명을 fileResult.jsp로 전달해줄 Controller입니다.
※ 파일처리를 위해서는 MultipartHttpServletRequest를 사용해야 합니다.
fileResult.jsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>fileResult</title> </head> <body> <c:forEach items="${list}" var="data"> ${data}<p> </c:forEach> </body> </html> | cs |
FileController에서 받은 list를 출력하는 jsp페이지입니다.
출력화면
fileUploadTest.jsp
파일 2개를 첨부하고 파일업로드를 클릭하여 파일을 FileController에 전달하는 페이지입니다.
fileResult.jsp
Controller에서 리턴받은 원본파일명, 시스템파일명이 출력되는 페이지입니다.
C:\Upload\testfile
파일 업로드 경로에 파일이 sysFileName으로 정상적으로 저장되었습니다.
'Back-End > Java' 카테고리의 다른 글
[Spring] AOP (0) | 2017.12.27 |
---|---|
[Spring] @ControllerAdvice를 이용한 error 익셉션 처리 (1) | 2017.12.22 |
[Spring] 로그인 여부에 따라 페이지 다르게 보여주기 (0) | 2017.12.18 |
[Spring] 웹에서 파라미터 전달받아 출력하기 (0) | 2017.12.14 |
[Spring] depends-on 사용하기 (0) | 2017.12.12 |