index | next

Implementing Custom Component Tags

Recall that custom components require both: The tag handler class name is specified in a TLD (tag library descriptor) file: Tag libraries are referenced by the uri attribute of the taglib directive in the JSF page:
    <%@ taglib uri="http://corejsf.com/spinner" prefix="corejsf" %>
This URI is specified in the TLD file:
    <uri>http://corejsf.com/spinner</uri>
along with tag attribute definitions.

index | next