Hi,
i have an application which uses myfaces (1.1.4), tomahawk (1.1.3) and facelets (jsf-facelets-1.1.14) for JSF version 1.1.
Since I updated to JSF version 1.2 (myfaces 1.2.6, tomahawk12-1.1.8, jstl 1.2) there are much more elements (each of the same type) in the component trees of my views. These new components are like (only the id of each component is different):
<com.sun.facelets.compiler.UIInstructions id="j_id1" com.sun.facelets.MARK_ID="42085bc7" facetCount="NULL" family="NULL" rendered="true" rendererType="NULL" rendersChildren="NULL" transient="true"/>
Each of these component causes an exception in my console/log like
javax.faces.FacesException: Could not get property facetCount of component j_id1
javax.faces.FacesException: Could not get property family of component j_id1
javax.faces.FacesException: Could not get property rendererType of component j_id1
javax.faces.FacesException: Could not get property rendersChildren of component j_id1
The application runs fine, but I wonder about these UIInstructions in my component tree.
Does anyone know from where they are coming?
Thanks, Stefan Busch.