2

我的Mojarra 2.1.6 web 应用程序有问题,我正在使用@ViewScoped托管 bean 开发它,每个 bean 都附加到一个 xhtml 页面。此页面正在接收一些视图参数,并在以这种方式初始化 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 -->

当我发出诸如 Primefaces 表过滤之类的ajax请求时,问题就来了。虽然我的支持 bean 没有被再次创建,但<f:event type="preRenderView" listener="#{navegableUserData.initialize}" />正在被再次调用。

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

4

2 回答 2

11

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

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

与 BalusC 建议的相关:

于 2013-01-04T11:03:48.817 回答
1

为了完整起见,除了@jonhy 提到的方法之外,如果使用 JSF 2.2,还有一个更简洁的选择:使用f:viewAction而不是f:event.

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

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

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

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

也可以看看:

于 2014-01-15T08:57:38.350 回答