Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3670902
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:25:18+00:00 2026-05-19T02:25:18+00:00

I have a web based application that uses userName and password for login. now

  • 0

I have a web based application that uses userName and password for login.

now how can i check on certain time which all users are logged in at that very time.
i am using session management and no DB is used in application everything is on filesystem

Edit: 1 more silly doubt.. how to define a variable with application scope.. is this something of this sort?

<env-entry>
<env-entry-name>test/MyEnv2</env-entry-name>
<env-entry-type>java.lang.Boolean</env-entry-type>
<env-entry-value>true</env-entry-value>
</env-entry>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T02:25:19+00:00Added an answer on May 19, 2026 at 2:25 am

    Just collect all logged in users in a Set in the application scope. If your application is well designed, you should have a javabean User which represents the logged-in user. Let it implement HttpSessionBindingListener and add/remove the user from the Set when it’s about to be bound/unbound in the session.

    Kickoff example:

    public class User implements HttpSessionBindingListener {
    
        @Override
        public void valueBound(HttpSessionBindingEvent event) {
            Set<User> logins = (Set<User>) event.getSession().getServletContext().getAttribute("logins");
            logins.add(this);
        }
    
        @Override
        public void valueUnbound(HttpSessionBindingEvent event) {
            Set<User> logins = (Set<User>) event.getSession().getServletContext().getAttribute("logins");
            logins.remove(this);
        }
    
        // @Override equals() and hashCode() as well!
    
    }
    

    Note that you need to prepare the Set in the application scope so that it doesn’t return null in above methods. You could do that in the same methods by a nullcheck, or with help of ServletContextListener#contextInitialized().

    Then, anywhere in your application where you’ve access to the ServletContext, like in a servlet, you can just access the logged-in users as follows:

    Set<User> logins = (Set<User>) getServletContext().getAttribute("logins");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web based application that uses a self signed certificate. When you
I have an existing web application which uses window.showmodaldialog() to show certain forms and
I have a web-based application that notifies users of activity on the site via
I have started design of a ColdFusion application that is entirely web based. Not
We have a web application that is based around a form that gets passed
I have a client of my web based application who heavily uses the data
We have a sharepoint based application that uses a custom database for storing metadata/files
So, I have an web-based application that is using the Wicket 1.4 framework, and
I have a Web Service and an Android application that uses this web service.
I have a web application that has a WebDav share for Word that uses

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.