Hello,
I 'm making my first JSF page using jdeveloper. The problem i'm facing is that every time i press a button for which i have an action method, the constructor is called first. I only want the constructor to be called at the beginning of the application.
Any help would be highly appreciated.
Following is the jsf button code:
I 'm making my first JSF page using jdeveloper. The problem i'm facing is that every time i press a button for which i have an action method, the constructor is called first. I only want the constructor to be called at the beginning of the application.
Any help would be highly appreciated.
Following is the jsf button code:
Code:
<h:commandButton value="Submit" id="commandButton2" action="#{backing_hello1.commandButton2_action}"/> </h:form></body>
Comment