Apache Struts 2 Documentation > Home > Guides > Core Developers Guide > DispatcherListener
Added by tm_jee, last edited by Ted Husted on Oct 17, 2006  (view change)

Use a DispatcherListener object to execute code when a Dispatcher is initalized or destroyed. A DispatcherListener is an easy way to associate customizable components like a ConfigurationManager with a Dispatcher.

Example

static {
     Dispatcher.addDispatcherListener(new DispatcherListener() {
         public void dispatcherInitialized(Dispatcher du) {
            // do something to Dispatcher after it is initialized eg.
            du.setConfigurationManager(....);
         }

         public void dispatcherDestroyed(Dispatcher du) {
            // do some cleanup after Dispatcher is destroyed.
         }
     });
  }

Next: PreResultListener