JSF のコンポーネント クラスを拡張して (の 1h:panelGroupつにします)、複合コンポーネントを介してレンダリングしようとしています。
ステップ1:
@FacesComponent(value="customPanel")
public class CustomPanel extends HtmlPanelGroup { // or UIPanel
}
ステップ2:
<!-- INTERFACE -->
<composite:interface componentType="customPanel"/>
<!-- IMPLEMENTATION -->
<composite:implementation>
<h:outputText value="Some text:"/>
<composite:insertChildren/>
</composite:implementation>
そしてステップ3:
<xyz:panel>Hello world!</xyz:panel>
何も示しません。ここで何が欠けていますか?