我的p:ajax组件有问题。我使用模板,并将managedBean作为参数传输。
<ui:composition template="../templates/formTemplate.xhtml">
<ui:param name="formBean" value="#{formFilm}"/>
当我将托管bean用于模板时,我工作得很好,但没有进入p:ajax监听器属性。
<p:ajax event="itemSelect" listener="#{formBean.completeCharacter}"/>
我收到此错误:
Target Unreachable, identifier 'formBean' resolved to null
javax.el.PropertyNotFoundException: Target Unreachable, identifier
'formBean' resolved to null
它适用于使用模板的视图。那么我该如何解决这个问题?
感谢。