Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have implemented spring security and I can get all the logged in user by using the following code and display them under online tag

 for (Object user: sessionRegistry.getAllPrincipals()) {
            User onlineUser = (User) user;
            onlineUsersIds.add(onlineUser.getId());
         }

Is this possible to know that a user is just logged in so that I can update the online users list or I have to check sessionRegistry on every 5 or 10 minutes and then update user list every 5 or 10 minutes.

Please let me know if you need any other detail.

share|improve this question

1 Answer

i would use this: javax.servlet.http.HttpSessionBindingListener http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpSessionBindingListener.html

this would be on a 'per session' basis.

so everytime someone is authenticated, spring security puts certain values inside the session.

what you do is, check for that session attribute with the 'valueBound' and 'valueUnbound' methods. these methods would get an application scoped 'set' or synchronized 'set' process them accordingly

everytime you render a page, you just read from the application scoped set

share|improve this answer
Hi Titi, thanks for your response. Could you please show some example for this I tried to implement the above interface but then don't know how to call valueBound and ValueUnound methods and what to pass as parameters inside these methods. – user965884 Dec 11 '12 at 18:01
Hi, you don't have to call the methods. It is a listener. It will be called when an event happens. – Titi Wangsa Bin Damhore Jan 2 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.