I'm running a sample RichFaces application with a PhaseListener. I put a print statement into the backing bean's only get() method and I noticed that the get() method is called 6 times during the render response phase. Can someone please explain why this is happening?
Here's the code:
RichBean.java
public class RichBean implements Serializable {
private static final long serialVersionUID = -2403138958014741653L;
private String name;
...
public String getName() {
System.err.println("in getName()");
return name;
}
}
index.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j">
<body>
<ui:composition template="/templates/template.xhtml">
<ui:define name="title">RichFaces Sample</ui:define>
<ui:define name="body">
<h:form prependId="false">
<h:outputLabel value="Name:" for="nameInput" />
<h:panelGroup>
<h:inputText id="nameInput" value="#{richBean.name}">
<a4j:ajax event="keyup" render="output" />
<f:validateLength minimum="3" />
</h:inputText>
<rich:message id="nameError" for="nameInput"/>
</h:panelGroup>
<h:panelGroup id="output">
<h:outputText value="Hello #{richBean.name}!" rendered="#{not empty richBean.name}" />
</h:panelGroup>
</h:form>
</ui:define>
</ui:composition>
</body>
</html>
Output
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE RESTORE_VIEW 1
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER RESTORE_VIEW 1
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE APPLY_REQUEST_VALUES 2
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER APPLY_REQUEST_VALUES 2
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE PROCESS_VALIDATIONS 3
SEVERE: in getName()
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER PROCESS_VALIDATIONS 3
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE UPDATE_MODEL_VALUES 4
SEVERE: in setName()
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER UPDATE_MODEL_VALUES 4
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE INVOKE_APPLICATION 5
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER INVOKE_APPLICATION 5
INFO: PWC1412: WebModule[null] ServletContext.log():BEFORE RENDER_RESPONSE 6
SEVERE: in getName()
SEVERE: in getName()
SEVERE: in getName()
SEVERE: in getName()
SEVERE: in getName()
SEVERE: in getName()
INFO: PWC1412: WebModule[null] ServletContext.log():AFTER RENDER_RESPONSE 6
Thanks for any insight!