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

Popular posts from this blog

C++: Boost interprocess memory mapped file error -

python - IO.UnsupportedOperation: Not Writable -

python - Selecting distinct values from a column in Peewee -