我的问题是,我的一个ViewScoped
bean在同一视图中创建了几次。每次我在树中选择一个节点时,都会创建ViewScopedBean
的构造函数。
<h:form>
<p:tree value="#{treeBean.root}" var="node"
selectionMode="single" selection="#{viewScopedBean.selectedNode}">
<p:ajax event="select" update="selectedNode, treeBeanUpdate, otherBeanUpdate, panel" listener="#{treeBean.onNodeSelect}" />
<p:treeNode>
<h:outputText value="#{node}" />
</p:treeNode>
</p:tree>
Selected Node: <h:outputText value="#{viewScopedBean.selectedNode}" id="selectedNode"/><br/>
Current TreeBean: <h:outputText value="#{treeBean}" id="treeBeanUpdate"/><br/>
Current OtherBean: <h:outputText value="#{viewScopedBean}" id="otherBeanUpdate"/><br/>
<p:outputPanel id="panel">
<ag:profileComponent managedBean="#{viewScopedBean.profileBean}"/>
</p:outputPanel>
</h:form>
如果我删除这部分(对复合组件的引用),则不会调用ViewScopedBean
的构造函数:
<p:outputPanel id="panel">
<ag:profileComponent managedBean="#{viewScopedBean.profileBean}"/>
</p:outputPanel>
所有使用的bean都设置为@ViewScoped
。
@ManagedBean
@ViewScoped
public class ViewScopedBean implements Serializable {
private TreeNode selectedNode;
private ProfileBean profileBean;
public ViewScopedBean() {
System.out.println("Constructor of ViewScopedBean " + this);
}
@PostConstruct
public void init() {
System.out.println("ViewScoped init" + this);
profileBean = new ProfileBean();
}
}
这是正确的行为吗?如果不是,是什么引起的?
更新:我尝试使用一个空的复合,我有同样的问题。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:composite="http://java.sun.com/jsf/composite">
<composite:interface>
<composite:attribute name="managedBean" required="true"/>
</composite:interface>
<composite:implementation>
</composite:implementation>
</html>
但是如果我不需要managedBean
,那很好。
另一件我不明白的事情是,当构造函数被调用时,似乎创建的对象没有被使用。
启动视图(控制台输出):
Constructor of ViewScopedBean xxx.bean.ViewScopedBean@4e1d2b8e
点击树:
Constructor of ViewScopedBean xxx.bean.ViewScopedBean@4eb64f2e
Constructor of ViewScopedBean xxx.bean.ViewScopedBean@66863941
然后我打开调试窗口<ui:debug/>
, viewScopedBean
设置为xxx.bean.ViewScopedBean@4e1d2b8e
当您在视图中使用<c:if>
、<c:forEach>
等JSTL标记,或者使用binding
属性将JSF组件绑定为视图作用域bean的属性时,将在来自/到同一视图的每个请求上重新创建视图作用域bean。这显然就是复合组件中发生的事情。
您需要重写复合组件,使其不使用任何JSTL标记。将某些JSF组件绑定为bean的属性也可以通过多种方式避免,但如果确实无法避免,那么在大多数情况下,禁用web.xml
中的部分状态保存应该是有效的:
<context-param>
<param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
<param-value>false</param-value>
</context-param>
如果这对您不起作用,那么您真的必须与我们共享您的组合组件实现代码,以便我们可以指出注意事项并提出正确的方法。