Tutorial by Examples

We need to use tag <ui:remove> and </ui:remove> between any JSF code that we want to comment it. <ui:remove> <h:outputLabel value="Yeah, I'm really commented" /> </ui:remove> Of course you need add this xmlns to your header html tag. Check this minim...
You must to add to web.xml a configuration tag like this: <context-param> <param-name>facelets.SKIP_COMMENTS</param-name> <param-value>true</param-value> </context-param> Now you can use normal HTML comments tag <!-- and --> <!-- <...

Page 1 of 1