JSTL tags are taghandlers and they are executed during view build time, while JSF UI components are executed during view render time. Note that JSF's own <f:xxx> and <ui:xxx> tags which do not extend UIComponent (i.e. everything except of <f:param> and <f:selectItem(s)> and all those tags having a rendered attribute) are also taghandlers. Also, the id and binding attributes of JSF UI components are evaluated during view build time. Thus the below answer applies to them as well.
The view build time is that moment when the XHTML/JSP file is to be parsed and converted to a JSF component tree which is then stored as UIViewRoot of the FacesContext. The view render time is that moment when the JSF component tree is about to generate HTML, starting with UIViewRoot#encodeAll(). So: JSF UI components and JSTL tags doesn't run in sync as you'd expect from the coding. You can visualize it as follows: JSTL runs from top to bottom first, hands the result to JSF and then it's JSF's turn to run from top to bottom again. This may lead to unexpected results when using JSTL tags in for example JSF iterating components like <h:dataTable>, <ui:repeat>, etc, or when JSTL tag attributes depend on results of JSF events like preRenderView.
JSTL tags should be used carefully in Mojarra versions older than 2.1.18. Before this version, they don't work well together with view scoped beans when partial state saving is turned on (as by default). When you reference a view scoped bean in an attribute of a JSTL tag, then it will be newly recreated instead of retrieved from the view tree (simply because the complete view tree isn't available yet at the point JSTL runs). If you're expecting or storing some state in the view scoped bean by a JSTL tag attribute, then it won't return the value you expect, or it will be "lost" in the real view scoped bean which is restored after the view tree is built.
In a nutshell: Use JSTL to control flow of JSF result. Use JSF to control flow of HTML result. Do not bind the var of iterating JSF components to JSTL tag attributes. Do not rely on JSF events in JSTL tag attributes. Use at least Mojarra 2.1.18 to have the chicken-egg issue with view scope fixed, otherwise you must turn off partial state saving.
See also:
To see some real world examples where JSTL tags are helpful (i.e. when really properly used during building the view), see the following questions/answers:
As to your concrete functional requirement, if you want to render JSF components conditionally, use the rendered attribute on the JSF HTML component instead.
<h:someComponent rendered="#{lpc.verbose}">
...
</h:someComponent>
See also: