我有一个与此类似的复合标签:
<ui:decorate template="....">
<ui:define name="...">
<h:inputText value="#{value}"/>
</ui:define>
</ui:decorate>
它用于类似的页面
<ns:tag value="#{some.el.expression}"/>
It works fine as it is. Now I want to access the "some.el.expression" from java code. I need something similiar to component.getValueExpression("value") . It doesn't seems to work, if I cann it on the inputText node it give me "#{value}" which is not what I want. I am couldn't figure a way to access this value. Any thoughts?