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 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

Related Questions

Is it possible to make a Java program that prints its source code to
Is it possible that adding more import statements to your java code could slow
is there a possible bit of code (php, java, css, html) that will force
I have some Java code that needs to compile with current generics aware compilers
I have some Java code that validates XML against an XSD. I am using
I've heard that it is possible to write some code like this SomeClass obj
I have a some simple Java code that looks similar to this in its
Possible Duplicate: Java: how to check that a string is parsable to a double?
is it possible to create a java application that will import excel files .
Possible Duplicate: Difference between Color.red and Color.RED I have seen that the Java class

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.