0

Does JSF 1.2 support creating composite components?

Something like:

<composite:interface>
    ...
</composite:interface>
<composite:implementation>
    ...
</composite:implementation>

or is this available in JSF 2.0?

In JSF 1.2 my only option is using <ui:component>...</ui:component>?

Alina Danila
  • 1,683
  • 1
  • 24
  • 60

1 Answers1

1

Composite componets have been introduced in JSF2, you can have a look at this question to review available alternatives.

Community
  • 1
  • 1
mrembisz
  • 12,722
  • 7
  • 36
  • 32
  • Thanks for the answer. Unfortunately, the question you gave me link to, is also about JSF 2.0. – Alina Danila Apr 18 '12 at 10:43
  • Yes, and excellent answer from BalusC compares JSF 2 only composite components to 3 alternative options, all available also in JSF 1.2 :) – mrembisz Apr 18 '12 at 10:50