FacelletsではJSTLを使用します。


FacelletsでJSTLを使いますが、namespaceはxmlns:c=http://java.sun.com/jstl/coreです。
以下は.xhtmlファイルの例です。
 
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:c="http://java.sun.com/jstl/core"
                template="/layout/template.xhtml">

<ui:define name="body">

	<c:forEach begin="1" end="5">
		aaa
	</c:forEach>

</ui:define> 
</ui:composition>
 
Reference
https://facelets.dev.java.net/nonav/docs/dev/docbook.html#taglib-available-jstl