On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote:

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


You actually don't need to specify <property-class> for the runtime part of
JSF to work -- but it's possible that this would provide for information for
tools.

Craig


<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