jsf - How to resolve this facelets warning message -
what error message mean? values should provided rid of warning?
15:10:58,024 warning [component] facelets.recreate_value_expression_on_buil d_before_restore set 'true' facelets.build_before_restore set 'false' or unset. use facelets.recreate_value_expression_on_build_bef ore_restore must set facelets.build_before_restore 'true'!
in web.xml
file, seems have parameter defined:
<context-param> <param-name>facelets.recreate_value_expression_on_build_before_restore</param-name> <param-value>true</param-value> </context-param>
so stated warning message, add:
<context-param> <param-name>facelets.build_before_restore</param-name> <param-value>true</param-value> </context-param>
another solution remove first parameter web.xml
...
Comments
Post a Comment