I have two kinds of backing beans in my JSF application:
- Managed Beans (
@ManagedBean(name="bean")
) - Entity Beans (
@Entity
)
Which of them should be scoped (request/session/view/application/no)?
I'm having all of my managed beans scoped and entity beans not now (I had also entity beans scoped in the past and it seems to be the same as without scope). And in addition "not" could mean, that entity beans are request scoped.
Thanks for the explanation :)