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 - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -