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.