Example usage for org.springframework.web.context ContextCleanupListener ContextCleanupListener

List of usage examples for org.springframework.web.context ContextCleanupListener ContextCleanupListener

Introduction

In this page you can find the example usage for org.springframework.web.context ContextCleanupListener ContextCleanupListener.

Prototype

ContextCleanupListener

Source Link

Usage

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());
}