I started using JSF 2.0 with Facelets recently and got puzzled by new composite components knowing existing <ui:include> and other templating techniques offered by Facelets 1.x.

What is the difference between those approaches? Functionally they seem to offer about the same: <ui:param> vs <cc:attribute>, <ui:insert>+<ui:define> vs tag files, reuse of the existing templates. Is there anything besides syntax and clear interface specification in case of composite components? Could performance differ?

link|improve this question
feedback

1 Answer

up vote 17 down vote accepted

Use Facelet templates (as in <ui:include> and/or <ui:composition>) if you want to split main page layout fragments into reuseable templates. E.g. header, menu, footer, etc. An example can be found in my answer on this question: How to include another XHTML in XHTML using JSF 2.0 Facelets?

Use Facelet tag files if you want to have a reuseable group of components in order to prevent/minimize code duplication. E.g. a group of label+input+message components. The major difference with composite components is that the output of a Facelet tag file does not represent a single UIComponent. An example can be found in my answer on this question: How to make a grid of JSF composite component?

Use Composite Components if you want to create a single and reuseable custom UIComponent with a single responsibility using pure XML. Such a composite component usually consists of a bunch of closely related components and/or HTML and which get physically rendered as single component. E.g. a component which shows a rating in stars based on a given integer value. An example can be found in our Composite Component wiki page.

Use a Custom Component whenever the functionality cannot be achieved with Facelet tag files or composite components, because of the lack of support in the standard/available set of components. E.g. an <input type="file">. An example can be found in this blog: Uploading files with JSF 2.0 and Servlet 3.0.

The performance concern is negligible. The choice should be made based on the concrete functional requiremments and the final degree of abstraction, reusability and maintainability of the implementation.

link|improve this answer
why would you want to render 1 component (composite component) instead of let's say 3 (facelet tag file)? I mean well, on a sunny day you'll maybe feel like 1 instead of 3... but I guess there's something else behind it. In your example you are extending UINamingContainer ... could that be one of the reasons to go for a cc (so to be able to overwrite some jsf implementation specific functions)? – Toskan Jan 6 at 18:03
A tag file should be seen as kind of an include. A composite component should be seen as a real component. A composite component requires to implement NamingContainer, otherwise you end up with duplicate ID problems when the same component is reused multiple times. – BalusC Jan 6 at 18:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.