Define JSF Taglibs

Define JSF Taglibs.

The JSF Taglibs are of two.

1. HTML Tag lib
2. Core Tag lib

HTML Tag lib: This tag library contains all the tags that pertains all the tags that are to deal with forms and other HTML-specific stuff.

Core Tag lib: The Core Tag lib contains the tags that pertaining all the tags that are to deal with logic, validation, controller and other JSF-specific stuff.

The two tag libs are to be specified as follows:

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>

Define JSF Taglibs.

The JSF Taglibs contain all the custom tags that make up the library and enables the configuration of many details regarding the tool behavior.
For example, you can specify the appearance of tags in the Palette, behaviors when dropping tags onto the editor, the visual appearance of components in the JSP, and various details about tag attributes and data binding.
Explain JSF technologies, i.e. Apache Tomahawk, Facelets, Shale, and Seam
JSF technologies - Apache Tomahawk: A series of JSF components are provided by MyFaces Tomahawk. Tomahawk provides several custom components that are 100% JSF compatible components...
JSF life cycle
JSF life cycle - The life cycle of JSF is similar to JSP. A JSF page is represented by the UI components which are in tree nature...
JSF and AJAX
JSF and AJAX - AJAX and JSF together makes a rich web application. AJAX usage is focused on creating richer user interfaces..
Post your comment