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 8726079
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:10:49+00:00 2026-06-13T08:10:49+00:00

How can I display the username from the userindex page once the user successfully

  • 0

How can I display the username from the userindex page once the user successfully login. Should I be pass it to the constructor and use it? or is there any better solution for this?

  • 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-06-13T08:10:50+00:00Added an answer on June 13, 2026 at 8:10 am

    Create a session-scoped bean that stores either the user’s ID (so you can lookup the user per request) or the actual user object itself.

    @Named // or @ManagedBean
    @SessionScoped
    public class SessionGlobals {
        private Integer userId;
    
        public boolean isLoggedIn() {
            return userId != null;
        }
    
        public Integer getUserId() {
            return userId;
        }
    
        public void login(int userId) {
            this.userId = userId;
        }
    
        public void logout() {
            this.userId = null;
        }
    

    Inject this bean wherever it is required. When you login and logout, call the appropriate methods above.

    For example:

        @Named // or @ManagedBean
        @RequestScoped
        public class RequestGlobals {
    
            public User getUser() {
                return sessionGlobals.isLoggedIn()
                        ? userDao.findById(sessionGlobals.getUserId())
                        : null;
            }
    
            @Inject
            private UserDao userDao;
    
            @Inject
            private SessionGlobals sessionGlobals;
        }
    

    and in your page or template:

        <h:outputText value="Welcome, #{requestGlobals.user.firstName}"
                      rendered="#{sessionGlobals.loggedIn}"/>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any firefox addon which can display my asp.net page viewstate size.... Any
I have a login JSP which takes username / password from the user in
I can display a simple Visual Basic inputbox from a PowerShell script like this:
Possible Duplicate: Is there a tool that can display a SVN repository visually (
I'm wondering how I can display the recently created nodes by a user on
I want to develop JSF page which can display the swap size if the
I'm using PHP to display the most recent tweet from a user. This is
Hello friends I get datas from Web services so I can't use Html.DisplayFor(model=>model.item)and how
I want to be able to display a user's username with cakephp in my
I have a sign-in-action-form page which accept username and password from sign-in-form. Now most

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.