tags:

views:

109

answers:

2

where can i find schema definitions for

xmlns:h="http://java.sun.com/jsf/html" 
xmlns:f="http://java.sun.com/jsf/core" 
xmlns:c="http://java.sun.com/jstl/core" 

?

+1  A: 

In the jar-file of your JSF implementation there is a META-INF folder. There you can find the .tld files that you need. But they are not .xsd.

Note that if you are using facelets, the facelets definitions are in the jsf-facelets-xx.jar

As for the JSTL core tags - this is a useful reference

That is all about JSF pre-2.0.

Bozho
+1  A: 

You can convert the .tld files from @Bozho's answer to XSD files to integrate into an Schema Aware XML Editor Details

If you happen to use IntelliJ, you can add the JSF facet to your module, and the IDE will provide autocomplete and documentation for elements and attributes in the JSF namespaces, based directly on the .tld files.

retronym