JSF and bean getter functions
Hi,
I'm using a JSP page (say page1.jsp) in which I'm binding the values for some inputTexts to the properties of a Bean (say Bean1).
<af:inputText id="name" required="true"
showRequired="false"
value="#{Bean1.name}">
and so on.........
Now the first time I call this JSP page (page1.jsp), it calls the get functions of the bean and display the correct value for each InputText.
However, If I update the values of Bean properties (using some other page) and then again call my first JSP page, the JSP page display some InputText with new values and some with old values..
I can see that It calls some of the get functions in bean and not calling others, instead using the old values.
The scope of the bean is - Session
What can be the possible problem, I'm new to the JSF and not very familiar with it, Is there any way I can force the JSP to call the get function every time for every property in the Bean, I'm using in the page so as to get the current value.

