package egovframework.com.cmm.web; /* * Copyright 2001-2006 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the ";License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS"; BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import javax.servlet.ServletContext; import org.apache.commons.fileupload.FileItem; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; import org.springframework.util.StringUtils; import org.springframework.web.multipart.MultipartException; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.commons.CommonsMultipartFile; import org.springframework.web.multipart.commons.CommonsMultipartResolver; import egovframework.com.cmm.service.EgovProperties; import egovframework.com.utl.fcc.service.EgovFileUploadUtil; /** * 실행환경의 파일업로드 처리를 위한 기능 클래스 * * @author 공통서비스개발팀 이삼섭 * @since 2009.06.01 * @version 1.0 * @see * *
* << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ---------- -------- --------------------------- * 2009.03.25 이삼섭 최초 생성 * 2011.06.11 서준식 스프링 3.0 업그레이드 API변경으로인한 수정 * 2020.10.27 신용호 예외처리 수정 * 2020.10.29 신용호 허용되지 않는 확장자 업로드 제한 (globals.properties > Globals.fileUpload.Extensions) * **/ public class EgovMultipartResolver extends CommonsMultipartResolver { private static final Logger LOGGER = LoggerFactory.getLogger(EgovMultipartResolver.class); public EgovMultipartResolver() { } /** * 첨부파일 처리를 위한 multipart resolver를 생성한다. * * @param servletContext */ public EgovMultipartResolver(ServletContext servletContext) { super(servletContext); } /** * multipart에 대한 parsing을 처리한다. */ @Override protected MultipartParsingResult parseFileItems(List