jsf - Running XHTML and HTML on the same page? -
is possible run html , xhtml on same page? using jsf , need integrate in template.
if need give them .html extension, you'd need change default suffix .html well. add following entry web.xml achieve that:
<context-param> <param-name>javax.faces.default_suffix</param-name> <param-value>.html</param-value> </context-param>
Comments
Post a Comment