Posts

Showing posts from May, 2013

<managed-property> in adfc-config.xml

<managed-property> element in the adfc-config.xml file represents a property of a managed bean and it is nested in a the <managed -bean> .  The important thing is that the property should have the get/set methods in the bean <managed-bean id="__2">    <managed-bean-name>view_simple_page_view_bean</managed-bean-name>    <managed-bean-class>view.SimplePageViewBean</managed-bean-class>    <managed-bean-scope>view</managed-bean-scope>    <managed-property id="__3">      <property-name>simplePageModelBean</property-name>      <property-class>model.SimplePageModelBean</property-class>      <value>#{pageFlowScope.model_simple_page_model_bean}</value>    </managed-property>    <managed-property id="__5">      <property-name>header</pro...