支持对象错误的复合组件

Composite Component with wrong backing object

我有两个复杂的复合组件,它们呈现在页面的不同部分。它们每个都有自己的扩展 UIInput 的支持 bean,以便根据组件输入将转换后的值提交回服务器。这些组件单独工作正常,并根据需要更新和提交它们的值。但是,当它们放在同一页面上时,尽管没有明显的联系(除了在同一页面上),但它们似乎相互冲突。

其中一个组件位于页面的主体部分,另一个位于 p:dialog。当我执行更新对话框或其内容的 ajax 请求时,请求失败。

Firefox 报告控制台警告:"XML or text declaration not at start of entity"

从服务器返回的响应看起来像两个单独的部分响应相互混合。它在第一个结束标记之前有两个 标记,它还有两个 标记。它们不是一个接着一个,在第二个 xml 和部分响应标记之前会有您期望的通常更新,然后第二组之后的数据是服务器错误。

在服务器端,服务器报告呈现视图时出错,并且在尝试呈现 ComponentA.xhtml(这不是来自 ajax 请求的更新的一部分)时 属性 "Extras"(在组件 A 的数据中找不到组件 B(作为更新的一部分)作为值的对象 属性。

所以看起来页面正在尝试重新呈现或以其他方式处理组件 A,即使它应该被排除在 ajax 请求之外,然后给它应该去组件 B 的数据是 ajax 请求的一部分。我已经检查以确保组件的 ID 不同,它们指向正确的支持 bean,并且这些 bean 指向正确的组件,但它仍然无法正常工作。在这一点上我被卡住了。有人有什么想法吗?

编辑

针对 BalusC 的问题,在服务器或应用程序中没有设置特殊的异常处理。无论 Mojarra 2.1.3 的默认值是什么,Primefaces 5.0 和 Tomcat 7 都是我们正在使用的。这是 tomcat 服务器输出的唯一异常:

Nov 5, 2015 11:40:27 AM com.sun.faces.application.view.FaceletViewHandlingStrategy handleRenderException
SEVERE: Error Rendering View[/program/toc/tocmain.xhtml]
javax.el.PropertyNotFoundException: /resources/ppa/personselector.xhtml @55,136 rendered="#{not empty item.extras}": Property 'extras' not found on type org.ppa.pejsf.objects.FreeFormDrugData
    at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:111)
    at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:194)
    at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:413)
    at javax.faces.component.UIComponent.isVisitable(UIComponent.java:1646)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1579)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at org.primefaces.component.api.UITabPanel.visitTree(UITabPanel.java:916)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIForm.visitTree(UIForm.java:344)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at javax.faces.component.UIComponent.visitTree(UIComponent.java:1600)
    at com.sun.faces.context.PartialViewContextImpl.processComponents(PartialViewContextImpl.java:376)
    at com.sun.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:297)
    at org.primefaces.context.PrimePartialViewContext.processPartial(PrimePartialViewContext.java:60)
    at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:390)
    at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
    at org.primefaces.webapp.filter.FileUploadFilter.doFilter(FileUploadFilter.java:98)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169)
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:405)
    at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:200)
    at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:515)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:302)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1146)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:701)

编辑 2

如果有帮助的话,问题似乎出现在渲染视图时,组件 B 的值在后端不为空。

好吧,我从来没有找到发生这种情况的原因,但我确实找到了防止这种情况发生的解决方案。如果我在 ajax 请求的 render/update 列表中包含系统试图呈现(但不应该呈现)的组件,问题就会消失。