Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The ConfigurationProvider interface describes the framework's configuration. By default, the framework loads its configurations via an xml document by using the StrutsXmlConfigurationProvider. The provider can be configured through a Dispatcher's Dispatcher Listener DispatcherListener.

Example

Code Block
 static {
   Dispatcher.addDispatcherListener(new DispatcherListener() {
     ....
     public void dispatcherInitialized(Dispatcher du) {
         ConfigurationManager confManager = du.getConfigurationManager();
         confManager.addConfigurationProvider( ... );
     }
     ....
   });
 }