I am using JSF 2.0 on JSP 2.1. Is there any possibility to use Facelets' <ui:repeat> tag in JSP files?
I have imported the Facelets taglib in JSP as
<%@ taglib uri="http://java.sun.com/jsf/facelets" prefix="ui"%>
But it is not identifying the taglib ui.taglib.xml that comes with jsf-impl.jar and gives an error in render time as
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsf/facelets cannot be resolved in either web.xml or the jar files deployed with this application
But this <ui:repeat> tag works fine in my Facelets files.