What are the tag libraries supported by JSF?
Answered
What are the tag libraries supported by JSF?
Best answer
The tag libraries supported by JSF are:
- JavaServer Faces Core Tag Library – This library consists of tags for JavaServer Faces custom actions that are independent of any particular render kit. This has a prefix as ‘f:’ and the URI is http://java.sun.com/jsf/core
- JavaServer Faces HTML Tag Library – This library consists of JavaServer Faces component tags for all UIComponent objects in a web application. This has a prefix as ‘h:’ and the URI is  http://java.sun.com/jsf/html
- JavaServer Faces Facelets Tag Library – This library consists of tags for templating. This has a prefix as ‘ui:’ and the URI is http://java.sun.com/jsf/facelets
In addition to these tag libraries, JSTL Core Tag library and JSTL Functions Tag Library are also supported.