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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:32:09+00:00 2026-06-06T22:32:09+00:00

In SessionListener I want to set some values of @ManagedBean with Session scope that

  • 0

In SessionListener I want to set some values of @ManagedBean with Session scope that I want to show in JSF.

  • 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-06T22:32:10+00:00Added an answer on June 6, 2026 at 10:32 pm

    You’d need to create the managed bean instance yourself.

    Bean bean = new Bean();
    bean.setSomething(something);
    event.getSession().setAttribute("bean", bean); // "bean" is managed bean name.
    

    JSF will just reuse it if it already exist in the session scope (you see, the JSF “session scope” is under the covers represented by attributes of HttpSession). Note that this way any @PostConstruct won’t be invoked and any dependencies which needs to be injected by @ManagedProperty, @EJB, etc, won’t be injected at all. You’d need to do it yourself as well.

    Designtechnically, much better is to perform the job just in the constructor or @PostConstruct method of the backing bean class itself.

    @ManagedBean
    @SessionScoped
    public class Bean {
    
        @PostConstruct
        public void init() {
            // Here.
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In web.xml I have this <session-config> <session-timeout>2</session-timeout> </session-config> <listener> <listener-class>myapplication.SessionListener</listener-class> </listener> In the SessionListener.java
How can I access request headers from a SessionListener? I need to set a
I'm doing some work on a JSP site that was coded very badly. For
package session; import java.io.FileWriter; import java.text.DateFormat; import java.text.SimpleDateFormat; import javax.swing.JOptionPane; import org.openymsg.network.FireEvent; import org.openymsg.network.Session;
AFAIK, the httpsessionlisterner implementation listener class is get instantiated when the first session is
Good evening, In a test JSF 2.0 web app, I am trying to get
i try to save user session in a hashmap on every cluster. and when
How might a person simulate firing the HttpSessionListener.sessionDestroyed object in a session listener? Is
In my JSF application, I need to redirect the user from Page A to
I recently came across a situation where I have to do some actions when

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.