Eager bean is not created at application startup
------------------------------------------------

                 Key: MYFACES-2894
                 URL: https://issues.apache.org/jira/browse/MYFACES-2894
             Project: MyFaces Core
          Issue Type: Bug
          Components: JSR-314
    Affects Versions: 2.0.2-SNAPSHOT
            Reporter: Nick Belaevski


For the following code:

    <managed-bean eager="true">
        <managed-bean-name>eagerBean</managed-bean-name>
        <managed-bean-class>demo.EagerBean</managed-bean-class>
        <managed-bean-scope>application</managed-bean-scope>
    </managed-bean>


package demo;

public class EagerBean {

    public EagerBean() {
        System.out.println("EagerBean.EagerBean()");
    }
    
}

bean is not being initialized at application startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to