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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:05:46+00:00 2026-05-16T11:05:46+00:00

is it possible in java that code in constructor is called only once even

  • 0

is it possible in java that code in constructor is called only once even if page is refreshed via some actionListener. In C# Page.PostBack method works fine but here in java i can not find right method.

  • 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-16T11:05:47+00:00Added an answer on May 16, 2026 at 11:05 am

    You can know when it’s postback with a function such as:

    import javax.faces.bean.ManagedBean;
    import javax.faces.context.FacesContext;
    
    @ManagedBean
    public class HelperBean {
    
         public boolean isPostback() {
                FacesContext context = FacesContext.getCurrentInstance();
                return context.getRenderKit().getResponseStateManager().isPostback(context);
            }
    
    }
    

    If for every refresh the default constructor is called, that means that your bean is RequestScoped. A refresh (GET) or a postback (POST) are considered as requests, so the bean will be created for every request. There are other instantiation options such as SessionScoped or ApplicationScoped or just instantiate it when a postback occurs, with the above function.

    Setting the scope a-la-JSF1.2

    Edit your faces-config.xml file located under /WEB-INF:

     <managed-bean>
      <managed-bean-name>myBean</managed-bean-name>
      <managed-bean-class>com.mypackage.myBean</managed-bean-class>
      <managed-bean-scope>request</managed-bean-scope>
     </managed-bean>
    

    you can use request, session or application

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 541k
  • Answers 541k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer To add a DeleteOnNull attribute, you'll have to edit your… May 17, 2026 at 2:51 am
  • Editorial Team
    Editorial Team added an answer This answer [ab]uses the replacement function: >>> s = "foo_M_bar_type… May 17, 2026 at 2:51 am
  • Editorial Team
    Editorial Team added an answer The technique you're using for non-blocking scripts (appending a script… May 17, 2026 at 2:51 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a some simple Java code that looks similar to this in its
In Java is there anyway to have one constructor that will accept an array
I have a Java application that uses a C++ DLL via JNI. A few
I have some Java code similar to: public class Thing { private IPolicy policy;
I'm writing a Java application that's working with Apache Derby via JDBC. I'm having
Does anyone know if it possible to define the equivalent of a java custom
I have a Java Applet that is generating an image. Ultimately, I would like
I have created a rather complicated piece of (Java) code for a game I
I'm looking for a Java library that would allow me to marshal XML to
Is it technically possible for a thread in Java to deadlock itself? I was

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.