アクションハンドラー内からフォームフィールドのIDを判別する必要があります。フィールドは含まれているファセットコンポーネントの一部であるため、フォームは異なります。
include.xhtml
<ui:component>
<h:inputText id="contained_field"/>
<h:commandButton actionListener="#{backingBean.update}" value="Submit"/>
</ui:component>
example_taining.xhtml
<h:form id="containing_form">
<ui:include src="/included.xhtml"/>
</h:form>
update
実行時にメソッド内のフォームのIDを確認するにはどうすればよいですか?または、さらに良いことに、入力フィールドのIDを直接入力します。