I have to implement a Proof of concept for multi client handling in JSF 2.0. How can multiple clients be handled in jsf?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just do not store request or session scoped data in a managed bean which is placed in the application scope. Also just do not declare the properties of a request or session scoped bean which is supposed to live as long as the bean itself as
static.It’s under the hoods not different from the basic Servlet API.