I have received this error for
<%@taglib uri="http://java.sun.com/jsf/facelets" prefix="ui" %>
But I have library facelets-lib.jar
I suppose that library in facelets, but file jsf-facelets-1.1.10.jar
not contains tld descriptors.
What file is correct?
|
|
|
Facelets is intented to replace JSP altogether. But yet you're attempting to declare it as a JSP taglib. This is never going to work. Both are distinct view technologies. Facelets is a XML based view technology which is designed to be a successor of JSP. In Java EE 6 which was released december 2009 it has already replaced JSP as standard view technology for JSF. You need to rename file extension from So, for example the following basic JSP template
has to be rewritten as
Finally, those are Facelets 1.x JARs while Facelets 2.x is already been out for over 1,5 years as part of a JSF 2.x implementation. If you can, I'd strongly recommend to just skip Facelets 1.x and continue with Facelets 2.x. See also:
|
|||
|
|
|
If you are using jsf2, you will need the jsf-api.jar and the jsf-impl.jar |
|||
|
|