1 25 package org.snipsnap.net; 26 27 import org.radeox.util.logging.Logger; 28 29 import javax.servlet.ServletContextEvent ; 30 import javax.servlet.ServletContextListener ; 31 32 public class ApplicationContextListener implements ServletContextListener { 33 public void contextInitialized(ServletContextEvent event) { 34 Logger.log(Logger.DEBUG, "WebApplication started: "+event.getServletContext().getRealPath("/")); 35 } 36 37 public void contextDestroyed(ServletContextEvent event) { 38 } 45 } 46 | Popular Tags |