查看多次调用Scoped Bean preRenderView方法

时间:2013-01-04 08:52:31

标签: java jsf-2 primefaces

我的 Mojarra 2.1.6 网络应用程序存在问题,我正在使用@ViewScoped托管bean进行开发,每个bean都附加到xhtml页面。这个页面正在接收一些 view params 并在以这种方式初始化bean之后:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:p="http://primefaces.org/ui"
template="/templates/general_template.xhtml">

<ui:define name="metadata">
    <f:metadata>
        <f:viewParam id="user" name="user"
            value="#{navegableUserData._ParamUser}" />

        <f:viewParam id="NavIndex" name="NavIndex"
            value="#{navegableUserData._QueueIndex}" />
        <f:event type="preRenderView"
            listener="#{navegableUserData.initialize}" />
    </f:metadata>
    <h:message for="user" />
</ui:define>

<ui:define name="general_content">
    <p:outputPanel autoUpdate="false" id="Datos_Loged" name="Datos_Loged"
        layout="block">
        <h:form id="SystemUserForm">
            <ui:include
                src="/system/manage_user/content/edit_user/system_user_data/system_user.xhtml">
                <ui:param name="manager" value="#{navegableUserData}" />
            </ui:include>
        </h:form>
    </p:outputPanel>
</ui:define>

正如您所看到的,我将我的页面嵌套到一个通用模板中,如下所示:

<?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">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:p="http://primefaces.org/ui" xmlns:o="http://omnifaces.org/ui">


<h:head>
    <meta http-equiv="Pragma" CONTENT="no-cache"></meta>
    <meta http-equiv="cache-control" content="no-cache"></meta>
    <meta http-equiv="Expires" CONTENT="-1"></meta>
    <meta http-equiv="Content-Type"
        content="text/html; charset=ISO-8859-15" />
    <h:outputStylesheet library="css" name="prime_styles.css" />
    <h:outputScript library="js" name="prime_translations.js" />
</h:head>

<h:body>
    <ui:insert name="metadata" />
    <o:importConstants
        type="com.company.system.view.beans.NavigationResults" />

<!-- More stuff -->

当我发出 ajax 请求(例如Primefaces表过滤)时出现问题。虽然我的辅助bean没有再次创建,但是再次调用 <f:event type="preRenderView" listener="#{navegableUserData.initialize}" />

我正在基于视图参数进行数据加载,并且只有在第一次呈现页面时才需要执行该方法。我一直非常小心使用<c:xxx>标签,并认为这不是问题,因为我只在一般模板中使用它们,我的视图bean属性没有附加到它们。我的所有页面都有这个问题,所以我认为这不是特定支持bean的问题。

2 个答案:

答案 0 :(得分:11)

如果仅在ajax请求期间发生这种情况,请尝试以下操作:

public void initialize() {
    if (!FacesContext.getCurrentInstance().isPostback()) {
        // -----------
        // -----------
    }
}

相关的BalusC建议:

答案 1 :(得分:1)

为了完整起见,除了@jonhy提到的方法之外,如果使用JSF 2.2,那么选择更简洁:使用f:viewAction代替f:event

<f:viewAction action="#{navegableUserData.initialize}" />

有了这个,没有必要用if (!FacesContext.getCurrentInstance().isPostback())包装你的服务器代码,因为基本上该方法本身并没有被调用,因为默认情况下这个动作不会在回发上执行。 / p>

您可以将它们设置为,这与使用原始f:event的行为相同:

<f:viewAction action="#{navegableUserData.initialize}" onPostback="true" />

另见: