我正在使用primefaces 3.5.8和glassfish 3.1.2.2开发web应用程序。 我正在尝试在我的会话作用域和无状态bean中检索tabView:
所以在我的jsf页面中我有:
<html xmlns="http://www.w3.org/1999/xhtml" id="htmlRoot"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<f:view contentType="text/html" id="globalView">
<h:head>....</h:head>
<h:body style="background-color: rgb(210, 220, 227);" id="htmlBody">
...
<p:tabView binding="#{myDocumentBean.myDocTabs}" styleClass="table_doc" id="docTab" >
...
</f:view>
</html>
在我的支持bean中,我有myDocTabs属性及其setter,getter:
public UIData getMyDocTabs() {
return myDocTabs;
}
public void setMyDocTabs(UIData myDocTabs) {
this.myDocTabs = myDocTabs;
}
但每当我使用findComponent()方法检索组件时,它总是返回null:
UIComponent xxx = FacesContext.getCurrentInstance().getViewRoot().
findComponent("htmlBody:docTab");
System.err.println("xxx = " + xxx); //xxx is always null.
我还尝试了其他路径作为findComponent()的参数,例如来自root的完整路径:“htmlRoot:globalView:htmlBody:docTab”,但这也不起作用。
但是我确实阅读了一些关于findComponent()的文章,例如: Accessing dynamic UIComponents in JSF Managed Bean 它告诉我,我可以检索一个组件,其id和它的直接父id与':'结合。
我可以知道我的应用程序出了什么问题吗? 感谢。