Skip to content

Instantly share code, notes, and snippets.

@juandbc
Created April 28, 2018 21:55
Show Gist options
  • Save juandbc/766c20614c52d6496432af9455794385 to your computer and use it in GitHub Desktop.
Save juandbc/766c20614c52d6496432af9455794385 to your computer and use it in GitHub Desktop.
Namespaces for JavaServerFaces
Old namespace JSF 2.2 namespace
http://java.sun.com/jsf/core http://xmlns.jcp.org/jsf/core
http://java.sun.com/jsf/html http://xmlns.jcp.org/jsf/html
http://java.sun.com/jsf/facelets http://xmlns.jcp.org/jsf/facelets
http://java.sun.com/jsf/composite http://xmlns.jcp.org/jsf/composite
http://java.sun.com/jsp/jstl/core http://xmlns.jcp.org/jsp/jstl/core
http://java.sun.com/jsp/jstl/functions http://xmlns.jcp.org/jsp/jstl/functions
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:jl="http://xmlns.jcp.org/jsf/composite/jsflive">
</html>
<facelet-taglib version="2.2"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facelettaglibrary_2_2.xsd">
</facelet-taglib>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment