I have a web and web-fragment project. In side web-fragment project I use jsf. I would like to prevent jsf render the comment by set this value in web-fragment.xml
<context-param>
<param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
<param-value>true</param-value>
</context-param>
But when debuging I see that WebConfiguration can only see the all <context-param>
s in side web.xml
I would like to know is there any way to make this class load <context-param>
s inside web-fragment.xml
Thank you very much in advance!