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

  • SEARCH
  • Home
  • 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
  • 3 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 created an mvc3 web application that uses forms based authentication. one part
I have a web based application that uses a self signed certificate. When you
I have a java web application that uses form based authentication. If a standard
We have a web based (ASP.NET MVC) application that uses SQL Server 2008 for
I'm writing a web based application that will have its own authorization/authentication mechanism (traditional
Let me share the following scenario: I have a ASP.NET intranet Web-based application that
I have a web application that dynamically loads assemblies based on database configuration entries
I have a web-based application which is very highly reliant on jquery / javascript,
I have a problem here. Right now I'm doing my Web Based Application, my
I have a web application that uses spring security. It uses <intercept-url ../> elements

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.