Difference between revisions of "ADF Applications"
From ADF Docs
(→Guide to Creating a New ADF Application) |
|||
Line 2: | Line 2: | ||
The following steps are instructions for creating a new application in the ADF. | The following steps are instructions for creating a new application in the ADF. | ||
− | # A | + | # A 'Starter App' is provided in the '/ADF/apps/' directory. See the [[Starter_Application|Starter Application]] wiki page for more details. |
− | # Copy this | + | # Copy this 'Starter App' directory into the apps directory and rename the folder to the name of your application. |
− | # Open the | + | # Open the 'AppBeanConfig.cfm' file in your applications directory. See the [[App Bean Config|App Bean Config]] wiki page for more details. |
− | # Update the | + | # Update the 'appBeanName' variable with the name for your application and the comment header at the top of the file with your application name. |
<source lang="java"> | <source lang="java"> | ||
// App specific variables | // App specific variables | ||
appBeanName = "STARTER_APP"; | appBeanName = "STARTER_APP"; | ||
</source> | </source> | ||
− | # Save the updated | + | # Save the updated 'AppBeanConfig.cfm' file. |
# [[Reset_ADF|Reset the ADF]] for the server and site. | # [[Reset_ADF|Reset the ADF]] for the server and site. | ||
# If no error messages appear, then your application is configured within the ADF. | # If no error messages appear, then your application is configured within the ADF. |
Revision as of 00:24, 30 March 2010
Guide to Creating a New ADF Application
The following steps are instructions for creating a new application in the ADF.
- A 'Starter App' is provided in the '/ADF/apps/' directory. See the Starter Application wiki page for more details.
- Copy this 'Starter App' directory into the apps directory and rename the folder to the name of your application.
- Open the 'AppBeanConfig.cfm' file in your applications directory. See the App Bean Config wiki page for more details.
- Update the 'appBeanName' variable with the name for your application and the comment header at the top of the file with your application name.
// App specific variables
appBeanName = "STARTER_APP";
- Save the updated 'AppBeanConfig.cfm' file.
- Reset the ADF for the server and site.
- If no error messages appear, then your application is configured within the ADF.
Related Guides
- Change Components in App
- Application Site Config
- ADF Library Overrides
- Application Site Level Customization