0

我有以下页面:

<?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:h="http://java.sun.com/jsf/html"
  xmlns:p="http://primefaces.org/ui"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:ui="http://java.sun.com/jsf/facelets">



<h:head>
    <title>Fire - Registration</title>
</h:head>

<h:body>

    <f:view>
        <f:event type="preRenderView" listener="#{confirmPasswordResetBean.bindSessionKey()}"/>
    </f:view>

    <p:growl id="growl" showDetail="true" life="5000" />

    <h:form>

        <p:panel header="Select your new password">

            <h:panelGrid columns="2" cellpadding="5">

                <p:outputLabel for="newPassword" value="Type your new password"/>
                <p:password id="newPassword" 
                            value="#{confirmPasswordResetBean.firstPassword}"
                            feedback="true"/>

                <p:outputLabel for="retypedPassword" value="Retype your password"/>
                <p:password id="retypedPassword" 
                            value="#{confirmPasswordResetBean.secondPassword}"/>

            </h:panelGrid>

            <p:commandButton id="confirmButton" 
                             value="reset" 
                             action="#{confirmPasswordResetBean.doResetPassword()}"
                             update=":growl"/>

        </p:panel>       

    </h:form>

</h:body>

上面使用的backing bean是RequestScoped,页面本身带一个参数(sessionKey)……我想做的是: 1.将sessionKey绑定到backing bean中的一个变量。这很简单。2.在同一个bean中执行专用逻辑时使用sessionKey的绑定值,当客户端按下commandButton时。

问题是按下按钮会启动一个新请求,这会使当前 bean(具有绑定值)以及外部页面上下文无效......因此我失去了从任何一个 bean 获取 sessionKey 的所有方法或页面参数...我该如何解决这个问题?我对 Web 编程和 JSF 都比较陌生,所以如果这有一个明显的答案,请原谅我。

4

1 回答 1

2

要么将 bean 放在视图范围内,这样它就可以在您与同一个视图交互时存在,或者将请求参数传递<f:param>给后续请求。

<p:commandButton ...>
    <f:param name="sessionKey" value="#{param.sessionKey}" />
</p:commandButton>

顺便说一句,您宁愿习惯<f:viewParam>直接将请求参数绑定到 bean。

<f:metadata>
    <f:viewParam name="sessionKey" value="#{bean.sessionKey}" />
</f:metadata>

也可以看看:

于 2012-10-25T02:28:04.577 回答