so in my dataList I can do #{welcome$products.productsList}
<managed-bean>
<managed-bean-name>productsMangedBean</managed-bean-name>
<managed-bean-class>java.util.ArrayList</managed-bean-class>
<managed-bean-scope>application</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>welcome$products</managed-bean-name>
<managed-bean-class>com.age.j.soft.beans.ProductBackingBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>productsList</property-name>
<property-class>java.lang.ArrayList</property-class>
<value>#{productsMangedBean}</value>
</managed-property>
</managed-bean>
then com.age.j.soft.beans.ProductBackingBean can implement the
viewcontroller interface to get init called to populate the list
before the view is rendered.
Does this look about right?
Shawn