]
Antonio Goncalves updated FORGE-2482:
-------------------------------------
Parent: FORGE-1926
Issue Type: Sub-task (was: Feature Request)
When setting up JSF, make sure to allow comments in the page
------------------------------------------------------------
Key: FORGE-2482
URL:
https://issues.jboss.org/browse/FORGE-2482
Project: Forge
Issue Type: Sub-task
Components: Java EE
Affects Versions: 2.19.1.Final
Reporter: Antonio Goncalves
Fix For: 2.x Future
By default, JSF pages do allow comments, which is a real drag
(
http://stackoverflow.com/questions/3388109/how-can-i-remove-html-comments...).
It would be good to set the {{javax.faces.FACELETS_SKIP_COMMENTS}} property to true in the
{{web.xml}} :
{code}
<context-param>
<param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
<param-value>true</param-value>
</context-param>
{code}