3

项目背景

我从头开始创建了一个包含两个主要组件的 URL 重写:

public class URLFilter implements Filter
{
    ...
}

public class URLViewHandler extends GlobalResourcesViewHandler
{
    ...
}

第一个类用于将干净的 URL 转发到每个页面具有不同 ID 的正确视图。第二个类覆盖该函数getActionURL(),以便h:form ajax 功能继续工作。

这些课程翻译如下:

Real URL                 Internal URL
/                    <-> page.jspx?key=1
/contact             <-> page.jspx?key=2
/projects/management <-> page.jspx?key=3
etc

当前解决方案

我现在的问题是我的用户登录和注销按钮:

<!-- Login button used if user is not logged, go to a secured page (which display error message). If he log with this button, the current page is reloaded and displayed properly. This button works perfectly -->
<h:commandButton rendered="#{pageActions.item.isPrivate}" value="#{msg.button_connect}" actionListener="#{userActions.onButtonLoginClick}" />
<!-- Login button used anywhere on public pages that redirect to user home after login, works perfectly since I haven't changed to clear url. -->
<h:commandButton rendered="#{not pageActions.item.isPrivate}" value="#{msg.button_connect}" actionListener="#{userActions.onButtonLoginClick}" action="userHome.jspx?faces-redirect=true" />
<!-- Logout button that works (it redirects at http://website.com/context-name/ but keep the ?key=1 at the end. -->
<h:commandButton value="#{msg.button_disconnect}" actionListener="#{userActions.onButtonLogoutClick}" action="page.jspx?key=1&amp;faces-redirect=true" styleClass="button" style="margin-left: 5px;" />

我的愿望

我的问题:有没有更好的方法来编程注销按钮,因为我需要重定向到上下文根,目前我正在使用带有主页键的视图名称,但我更喜欢 1. 使用真实路径 2. 不保留?key=1 在 url。

谢谢!

最终代码

基于 BalusC 的回答,这是我与他人分享的最终代码:

@ManagedBean
@RequestScoped
public class NavigationActions
{
    public void redirectTo(String p_sPath) throws IOException
    {
        ExternalContext oContext = FacesContext.getCurrentInstance().getExternalContext();

        oContext.redirect(oContext.getRequestContextPath() + p_sPath);
    }
}

<h:commandButton rendered="#{not pageActions.item.isPrivate}" value="#{msg.button_connect}" actionListener="#{userActions.onButtonLoginClick}" action="#{navigationActions.redirectTo(userSession.language.code eq 'fr' ? '/profil/accueil' : '/profile/home')}" />

既然有了路径就不需要钥匙了,那就更好了,再次感谢BalusC让我走上正轨!送了一小笔捐款:)

4

1 回答 1

9

这对于(隐式)导航是不可能的。不幸的/是,这不是一个有效的 JSF 视图 ID。

改为使用ExternalContext#redirect()。代替

action="page.jspx?key=1&amp;faces-redirect=true"

经过

action="#{userActions.redirectToRootWithKey(1)}"

public void redirectToRootWithKey(int key) throws IOException {
    ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
    ec.redirect(ec.getRequestContextPath() + "?key=" + key);
}
于 2012-11-19T12:02:04.940 回答