What is the difference between Custom Components a

2020-03-30 02:31发布

问题:

What is the difference between JSF Custom Components and Facelets Composite Components?

回答1:

JSF custom components are Java classes which extend UIComponent. Facelets composite components are XHTML files which use http://java.sun.com/jsf/composite namespace.

See also:

  • When to use <ui:include>, tag files, composite components and/or custom components?