I created one web application so i want to store my past logged user name list for comparing new users which are going to login. so how i do that by using ServletContext ?
or is there any other way?
I created one web application so i want to store my past logged user
Share
In JSF, application scoped managed beans are stored in the servletcontext. So, you could basically just create and declare an application scoped managed bean and put the list in there.
However, there are probably better ways for the particular functional requirement which is yet unclear in the question. At least, implementing a
HttpSessionListenerorHttpSessionBindingListeneris probably a better idea since logins are usually coupled to theHttpSession.Here are several examples: