Java tutorial
/* * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * "The contents of this file are subject to the Mozilla Public License * Version 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations under * the License. * * The Original Code is ICEfaces 1.5 open source software code, released * November 5, 2006. The Initial Developer of the Original Code is ICEsoft * Technologies Canada, Corp. Portions created by ICEsoft are Copyright (C) * 2004-2006 ICEsoft Technologies Canada, Corp. All Rights Reserved. * * Contributor(s): _____________________. * * Alternatively, the contents of this file may be used under the terms of * the GNU Lesser General Public License Version 2.1 or later (the "LGPL" * License), in which case the provisions of the LGPL License are * applicable instead of those above. If you wish to allow use of your * version of this file only under the terms of the LGPL License and not to * allow others to use your version of this file under the MPL, indicate * your decision by deleting the provisions above and replace them with * the notice and other provisions required by the LGPL License. If you do * not delete the provisions above, a recipient may use your version of * this file under either the MPL or the LGPL License." * */ package org.icefaces.application.showcase.view.bean.examples.component.inputFile; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import javax.servlet.http.HttpSessionEvent; import javax.servlet.http.HttpSessionListener; import java.io.File; /** * <p>The InputFileSessionCleaner is responsible for cleaning up any files * that may have been uploaded by a session. The InputFile component by * default stores files in an upload folder in the root directory of the * deployed application in a child folder named after session id.</p> * <p>In most deployment scenarios there is no need to keep files that * where uploaded during the session. This class implements * HttpSessionListener and will clean up any uploaded files when the * #sessionDestroyed method is called be the Servlet container </p> * <p>Make sure that this been is properly register as a listener in the * application web.xml descriptor file.</p> * * @since 1.7 */ public class InputFileSessionCleaner implements HttpSessionListener { public static final Log log = LogFactory.getLog(InputFileSessionCleaner.class); public static final String FILE_UPLOAD_DIRECTORY = "upload"; /** * This method is called by the servlet container when the session * is about to expire. This method will attempt to delete all files that * where uploaded into the folder which has the same name as the session * id. * * @param event JSF session event. */ public void sessionDestroyed(HttpSessionEvent event) { // get the session id, so we know which folder to remove String sessionId = event.getSession().getId(); String applicationPath = event.getSession().getServletContext() .getRealPath(event.getSession().getServletContext().getServletContextName()); String sessionFileUploadPath = applicationPath + FILE_UPLOAD_DIRECTORY + sessionId; File sessionfileUploadDirectory = new File(sessionFileUploadPath); if (sessionfileUploadDirectory.isDirectory()) { try { sessionfileUploadDirectory.delete(); } catch (SecurityException e) { log.error("Error deleting file upload directory: ", e); } } } public void sessionCreated(HttpSessionEvent event) { } }