stateful « Bean « JSF Q&A





1. Why shouldn't I use a JSF SessionScoped bean for logic?    stackoverflow.com

I'm developing a java EE web app using JSF with a shopping cart style process, so I want to collect user input over a number of pages and then do something ...

2. EJB3 Stateful session bean for login and shopping cart and change template    stackoverflow.com

Hello every body now I work with shopping cart, I wonder use between Stateful session beans or HTTP session for cart or login. Everybody have any ideas? In Stateful Session bean how ...

3. Using the Seam framework without Stateful Session Beans?    stackoverflow.com

Has anyone had success building a SEAM Application without using Stateful session beans? There is some confusion on a new project in which I think several stakeholders have essentially 'banned' ...

4. sessionscoped managed bean vs stateful ejb    stackoverflow.com

If I have a @ManagedBean that's @SessionScoped, why would I use a @Stateful EJB? I used it before for shopping carts and maintaining a conversational state, but since a managed bean ...

5. Architectural Decision - Maintain session at JSF bean side or use stateful Session Bean    stackoverflow.com

Folks, When using JSF with JEE container (co-located), Should you use Session scoped bean for session mgmt or should you use State full Session Bean. What is the best practice? please suggest. Thanks ...

6. session scoped managed bean vs stateful bean vs httpsession    stackoverflow.com

i need a way to save a user chosen configuration composed of different parts. each part is chosen on a separate page, from a list supplied by a managed bean (one ...