+1 vote
in JSF by
What is eager managed bean?

1 Answer

0 votes
by

The Managed bean is lazy by default. It means the bean is instantiated only when a request is made from the application.

You can force a bean to be instantiated and placed in the application scope as soon as the application is started.

...