Class IntrospectorCleaner
- java.lang.Object
-
- org.eclipse.jetty.servlet.listener.IntrospectorCleaner
-
- All Implemented Interfaces:
java.util.EventListener,ServletContextListener
public class IntrospectorCleaner extends java.lang.Object implements ServletContextListener
IntrospectorCleaner Cleans a static cache of Methods held by java.beans.Introspector class when a context is undeployed.- See Also:
Introspector
-
-
Constructor Summary
Constructors Constructor Description IntrospectorCleaner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(ServletContextEvent sce)Notification that the servlet context is about to be shut down.voidcontextInitialized(ServletContextEvent sce)Notification that the web application initialization process is starting.
-
-
-
Method Detail
-
contextInitialized
public void contextInitialized(ServletContextEvent sce)
Description copied from interface:ServletContextListenerNotification that the web application initialization process is starting. All ServletContextListeners are notified of context initialization before any filter or servlet in the web application is initialized.- Specified by:
contextInitializedin interfaceServletContextListener
-
contextDestroyed
public void contextDestroyed(ServletContextEvent sce)
Description copied from interface:ServletContextListenerNotification that the servlet context is about to be shut down. All servlets and filters have been destroy()ed before any ServletContextListeners are notified of context destruction.- Specified by:
contextDestroyedin interfaceServletContextListener
-
-