Is this a recent change to Facelets? I tried this in the seamspace
example and still got the "View /home.seam could not be restored" exception.
Dan Allen wrote:
> You simply set the context parameter PARAM_BUILD_BEFORE_RESTORE
> to true.
>
Correction. I provided the name of the constant in the Facelets API.
The parameter name is facelets.BUILD_BEFORE_RESTORE. The context
parameter configuration is shown below:
<web-app ...>
...
<context-param>
<param-name>facelets.BUILD_BEFORE_RESTORE</param-name>
<param-value>true</param-value>
</context-param
</web-app>
-Dan