So something like this?  Do I need the
<com.age.j.soft.hibernate.ProductBean> part?


<managed-bean>
                <managed-bean-name>AppSetupBean</managed-bean-name>
                
<managed-bean-class>com.age.j.soft.beans.AppSetupBean</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>productList</property-name>
                        
<property-class>java.util.List<com.age.j.soft.hibernate.ProductBean></property-class>
                        <value>#{AppSetupBean.productList}</value>
                </managed-property>
        </managed-bean>

Shawn

Reply via email to