List of usage examples for org.springframework.web.context ContextCleanupListener ContextCleanupListener
ContextCleanupListener
From source file:com.adamjan.AppInitializer.java
@Override public void onStartup(ServletContext servletContext) throws ServletException { XmlWebApplicationContext ctx = new XmlWebApplicationContext(); servletContext.addListener(new ContextLoaderListener(ctx)); servletContext.addListener(new ContextCleanupListener()); }