[
https://issues.apache.org/jira/browse/MYFACES-2894?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jakob Korherr resolved MYFACES-2894.
------------------------------------
Fix Version/s: 2.0.2-SNAPSHOT
Resolution: Fixed
This works now.
Actually we did not support this feature at all until now (we did not even
check the eager attribute in the faces-config or in @ManagedBean).
> 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
> Assignee: Jakob Korherr
> Fix For: 2.0.2-SNAPSHOT
>
>
> 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.