簡単なシナリオがあります。この例は PrimeFaces からのものですが、同様の方法で使用するすべてのタグに適用されると思います。
<p:autoComplete value="#{address.country}" id="#{layoutId}_country"
completeMethod="#{addressBean.completeCountry}" var="country"
itemLabel="#{country.name}" itemValue="#{country}"
converter="#{countryConverter}">
</p:autoComplete>
Bean のメソッド (例: addressBean.completeCounty) で、AutoComplete オブジェクトにアクセスできます。私が取得したいのは、値自体ではなく、その値 (#{address.country}) の参照です。
それはどこに縛られているのですか?