| Author |
JSF tags
|
Sudhakar Ponnazhagan
Greenhorn
Joined: Feb 07, 2004
Posts: 4
|
|
1) <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page"> 2) <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> I couldnt make out the situation where these above tags are used, like we normally use the 2nd type for the JSP/JSF tags. Have any idea?
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14672
|
|
Yes. The first one is used for JSP documents, which means JSP strictly following the XML syntax. In this case, you have to declare the libraries in the <jsp:root>. The second one is for common JSP pages.
|
[My Blog]
All roads lead to JavaRanch
|
 |
 |
|
|
subject: JSF tags
|
|
|