Let we have some facelet 1.xhtml
that contains
<h:inputText id="prop" value="#{MyBean.myProperty}"/>
and facelet 2.xhtml
that contains
<h:inputText id="prop" value="${MyBean.myProperty}"/>
Quote from official tutorial:
Immediate evaluation means that the expression is evaluated and the result returned as soon as the page is first rendered.
I dont understand at what specific phase immediate expression is evaluate? At Render Response
phase or Update model values
or Apply request
or what?