파일업로드(fileupload)
1. beans-webmvc.xml
- 업로드 기능을 적용하기 위해 MultipartResolver 인터페이스를 구현한 클래스를 bean으로 정의해야함
- 스프링에서 Commons File Upload를 사용해서 MultipartResolver를 구현한 CommonsMultipartResolver클래스이다
- bean id는 꼭 multipartResolver로 명시해야한다
- 파일의 최대 크기등 다양한 프로퍼티가 존재한다
2. upload.jsp
1) form 태그 설정시 enctype에 "multipart/form-data" 지정
2) input type="file"
3. fileupload.java
'Back-End > SpringFrame_1' 카테고리의 다른 글
[Spring] REST API - XML, JSON(2) (0) | 2016.10.30 |
---|---|
[Spring] REST API - XML, JSON(1) (0) | 2016.10.25 |
[Spring] Model오브젝트와 Session스코프 (0) | 2016.09.18 |
[Spring] 입력값다루기 @ModelAttribute (0) | 2016.09.18 |
[Spring] 클래스 레벨의 @RequestMapping (0) | 2016.08.24 |