Difference between revisions of "JSF2 - Namespaces XHTML"
(Created page with "Official namespaces for XHTML UI of a JSF Java web application.<br> <pre><html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns...") |
|||
Line 11: | Line 11: | ||
</html></pre> | </html></pre> | ||
+ | |||
+ | '''Documentation:''' https://docs.oracle.com/javaee/7/javaserver-faces-2-2/vdldocs-facelets/toc.htm | ||
[[Category: Java]] | [[Category: Java]] | ||
[[Category: JSF]] | [[Category: JSF]] | ||
[[Category: XHTML]] | [[Category: XHTML]] |
Revision as of 12:04, 22 June 2020
Official namespaces for XHTML UI of a JSF Java web application.
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://xmlns.jcp.org/jsp/jstl/core" xmlns:p="http://xmlns.jcp.org/jsf/passthrough" xmlns:fn="http://xmlns.jcp.org/jsp/jstl/functions" xmlns:cc="http://xmlns.jcp.org/jsf/composite" xmlns:jsf="http://xmlns.jcp.org/jsf"> </html>
Documentation: https://docs.oracle.com/javaee/7/javaserver-faces-2-2/vdldocs-facelets/toc.htm