6

我在 JSF 应用程序中实现登录,但重定向有问题。

我想在应用程序中的每个 xhtml 中提供登录表单,但是在登录成功或失败后,我想让用户在单击登录时保持在同一页面中。

我试图在 managedBean 方法中返回 null 但这不起作用,因为它不会刷新 webPage,我需要刷新页面才能使视图逻辑正常工作。

这是登录表单:

<h:form id="loginForm" rendered="#{!loginBean.estaLogueado()}">
                    <p:panel header="#{msg.header_login}">
                        <h:outputLabel for="login" value="#{msg.login}"/>
                        <p:inputText id="login" value="#{loginBean.usuario}"></p:inputText><br/>
                        <h:outputLabel for="pwd" value="#{msg.password}"/>
                        <p:inputText id="pwd" type="password" value="#{loginBean.password}"></p:inputText><br/>
                        <p:commandButton action="#{loginBean.login()}" value="Login"/>
                    </p:panel>
                </h:form>
                <h:form id="logoutForm" rendered="#{loginBean.estaLogueado()}">

                    Bienvenido #{loginBean.nombreUsuario}!!<br/>

                    <p:commandButton action="#{loginBean.logout()}" value="Desconectar"/>

                </h:form>

这是 action 属性中的方法:

public String login(){

    currentUser = gu.login(usuario, password);

    return null;
}

有一种方法可以返回到用户登录的 xhtml,而不是像“login.xhtml”这样的固定 xhtml?

4

2 回答 2

25

只需重定向请求 URI

public void login() throws IOException {
    // ...

    ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
    ec.redirect(((HttpServletRequest) ec.getRequest()).getRequestURI());
}
于 2013-05-10T16:27:07.090 回答
6

就我而言,有两种方法可以达到此目的。

  1. 您应该在调用者命令按钮的更新属性中定义需要更新的组件。
  2. 您应该通过添加?faces-redirect=true操作的返回值来进行真正的刷新。

第一个解决方案。

<h:form id="loginForm" rendered="#{!loginBean.estaLogueado()}">
                    <p:panel header="#{msg.header_login}">
                        <h:outputLabel for="login" value="#{msg.login}"/>
                        <p:inputText id="login" value="#{loginBean.usuario}"></p:inputText><br/>
                        <h:outputLabel for="pwd" value="#{msg.password}"/>
                        <p:inputText id="pwd" type="password" value="#{loginBean.password}"></p:inputText><br/>
                        <p:commandButton action="#{loginBean.login()}" value="Login" update=":loginForm :logoutForm"/>
                    </p:panel>
                </h:form>
                <h:form id="logoutForm" rendered="#{loginBean.estaLogueado()}">

                    Bienvenido #{loginBean.nombreUsuario}!!<br/>

                    <p:commandButton action="#{loginBean.logout()}" update=":loginForm :logoutForm" value="Desconectar"/>

                </h:form>

update 属性将更新组件。

第二种解决方案

添加?faces-redirect=true到您的操作方法的返回值以进行真正的刷新

public String login(){

    currentUser = gu.login(usuario, password);

    return "login?faces-redirect=true";
}
于 2013-05-10T13:56:20.320 回答