p:menuItem动作并重定向动作处理程序 - windowId被添加到重定向URL的末尾

时间:2012-07-18 00:07:35

标签: jsf redirect primefaces prettyfaces

我在p:menuItem中遇到了这个问题 - 使用PF 3.3.1,PrettyFaces 3.3.3和JSF / Mojarra2.1。

所以我有一组p:menuItems需要从当前页面传递“ID”参数。但是,我不希望构建以下形式的URL:/ page / targetPage?id = id& faces-redirect = true。我想要做的是,在页面操作处理程序上,重定向到相关的URL。但是,问题是生成的重定向将windowId附加到末尾,我无法访问targetURL!

在我的脸上:

<p:menuitem action="#{myActions.performAction}" ajax="false" value="navigateToThisAction"/>

在我的支持bean中:

public String performAction() {
    return navigate("pretty:myAction");
}

protected String navigate(String mappingId) {
    HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
    PrettyContext context = PrettyContext.getCurrentInstance(request);
    PrettyURLBuilder builder = new PrettyURLBuilder();

    UrlMapping mapping = context.getConfig().getMappingById(mappingId);
    String targetURL = builder.build(mapping, true, getId());

    try {
        FacesContext.getCurrentInstance().getExternalContext().redirect(targetURL);
    } catch (IOException ioe) {
        System.out.println("Error redirecting..." + ioe.getMessage());
    }
    return null;

}

2 个答案:

答案 0 :(得分:0)

如果通过调用FacesContext.getCurrentInstance().getExternalContext().redirect(targetURL);添加windowId = xxxxx,那么您可能想检查框架以查看添加该框架的内容。 PrettyFaces不会添加windowId参数,所以我猜它是其他东西,你正在使用的其他库,并且可能有办法在给定页面上手动禁用它。

答案 1 :(得分:0)

我发现问题是我在重定向之前在URL前面缺少request.getContextPath() - 感谢所有响应!