java - com.sun.faces.config.WebConfiguration cannot load <context-param> value inside web fragment -


i have web , web-fragment project. in side web-fragment project use jsf. prevent jsf render comment set 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 see webconfiguration can see <context-param>s in side web.xml

i know there way make class load <context-param>s inside web-fragment.xml

thank in advance!

i have checked implementation of geronimo version 3.0.1. bug of geronimo. in mergehelper class, missed initialization contextparammergehandler merge <context-param>s web-fragment web project.

here way fix it