Changes between Initial Version and Version 1 of FAQs/HowDoIAccessAConfigurationPropertyOfModelGlueInMyApplication

Show
Ignore:
Timestamp:
12/21/09 17:39:35 (16 years ago)
Author:
cfgrok (IP: 64.30.223.5)
Comment:

Added new FAQ page

Legend:

Unmodified
Added
Removed
Modified
  • FAQs/HowDoIAccessAConfigurationPropertyOfModelGlueInMyApplication

    v1 v1  
     1== How Do I Access a Configuration Property of Model-Glue in My Application? == 
     2 
     3You can access any property of your Model-Glue application by simply getting the configuration bean from !ColdSpring and calling the getter. For example, if you want to know the current debug property value: 
     4 
     5{{{ 
     6<cfset ValueOfDebug = getModelGlue().getBean("modelglue.modelGlueConfiguration").getDebug() /> 
     7}}}