Difference between revisions of "ADF Core Bean Config"

From ADF Docs
Jump to: navigation, search
(DELETE ME)
(Overview)
Line 2: Line 2:
 
The Core Bean Configuration file for the lightwire framework creates the objects and dependencies for the ADF.
 
The Core Bean Configuration file for the lightwire framework creates the objects and dependencies for the ADF.
  
The Bean Configuration file extends the [[Lightwire Config Extended Base|Lightwire Config Extended Base]] component file.   
+
The Bean Configuration file extends the [[Lightwire Config Extended Base]] component file.   
  
 
The configuration file sets up the objects for all components in the [[lib]] directory and initiates the [[App Bean Config|App Bean Config]] for the custom applications.
 
The configuration file sets up the objects for all components in the [[lib]] directory and initiates the [[App Bean Config|App Bean Config]] for the custom applications.

Revision as of 14:09, 24 March 2010

Overview

The Core Bean Configuration file for the lightwire framework creates the objects and dependencies for the ADF.

The Bean Configuration file extends the Lightwire Config Extended Base component file.

The configuration file sets up the objects for all components in the lib directory and initiates the App Bean Config for the custom applications.

Architecture

  • loadADFLibComponents function in the Lightwire Config Extended Base. The parameters are the ADF directory to locate all components and the directories to exclude. This function locates and creates objects for all the components in the argument directory.

/*

*	Build bean objects for all components in the ADF\LIB directory
*		Argument 1 = Directory to recurse for component files
*		Argument 2 = Director names to exclude
*/

loadADFLibComponents("ADF/lib/", "server");

  • Create the CoreConfig object into the factory.

/*

*	Load the singleton for the Core Config file
*/

addSingleton("ADF.core.Config", "CoreConfig");

/*

*	Load the ADF application bean configuration files (appBeanConfig.cfc)
*/

loadADFAppBeanConfig();