In your file, web.xmlit seems that you have defined this parameter:
<context-param>
<param-name>facelets.RECREATE_VALUE_EXPRESSION_ON_BUILD_BEFORE_RESTORE</param-name>
<param-value>true</param-value>
</context-param>
So, as indicated by the warning message, just add:
<context-param>
<param-name>facelets.BUILD_BEFORE_RESTORE</param-name>
<param-value>true</param-value>
</context-param>
Another solution is to remove the first parameter from web.xml...
source
share