top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are standard JSF tag libraries?

+1 vote
361 views
What are standard JSF tag libraries?
posted Oct 5, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

JSF Core Tags library

JSF HTML tags library

Use below namespace configurations to use them in JSF xhtml pages.

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:c="http://java.sun.com/jsf/core">

The html tags can now be used as with the h prefix as , etc and core tags with c prefix as , etc.

answer Oct 27, 2017 by Manikandan J
...