我正在实现一个复合组件,但我发现了一个我没有找到解决方案的问题。
我指定了页面作者可以或不可以传递的属性,但我无法指定方法属性(Action 的方法表达式),如果未传递,则复合组件不使用方法属性在复合:实现标签中。
这是我的代码:
<composite:interface>
<composite:attribute name="namePrompt" required="true"/>
<composite:attribute name="actionMethod" method-signature="java.lang.String action()" required="false"/>
<composite:attribute name="showComponent" default="false"/>
</composite:interface>
<composite:implementation>
<div>
<p:commandLink actionListener="#{cc.attrs.actionMethod}"
rendered="#{cc.attrs.showComponent}"
>
<h:outputText value="#{cc.attrs.namePrompt}"/>
</p:commandLink>
</div>
</composite:implementation>
使用时,我没有指定“actionMethod”属性。像这样:
<util:foo namePrompt="SomeName" showComponent="true"/>
但我收到错误消息:
javax.faces.FacesException: Unable to resolve composite component from using page using EL expression '#{cc.attrs.actionMethod}'
有没有办法做到这一点?