JSF 2で単純なメニュー複合コンポーネントを作成していますが、<h:commandLink>のアクション属性で使用するString属性を複合コンポーネントに渡すことができません。私のコンポーネントは次のようになります:
<composite:interface>
<composite:attribute name="title" required="true" type="java.lang.String"/>
<composite:attribute name="view" required="true" />
</composite:interface>
<!--implementation-->
<composite:implementation>
<li><h:commandLink action="#{cc.attrs.view}" value="#{cc.attrs.title}" /></li>
</composite:implementation>
<h:commandLink>のaction属性にアクション文字列を取得するにはどうすればよいですか?