从托管bean事件JSF重定向

时间:2014-02-28 12:42:53

标签: java redirect jsf-2

我有一个包含饼图的JSF页面。我们的想法是,当点击饼图扇区时,应用程序会重定向到另一个页面。我正面临挑战重定向因为它只是将完整的网址带到不是动态的页面,因为它将根据环境而改变。我的ItemSelect方法是:

public void itemSelect(ItemSelectEvent event) {

        try {

           FacesContext.getCurrentInstance().
             getExternalContext().redirect("http://localhost:8084/SIMBANK_BI/faces/OpenedAccountsProductTypeLevel.xhtml");

        } catch (IOException asd) {
            System.err.println(asd.getMessage());
        }
    }

我的JSF页面:

 <left>
             <p:growl id="growl" showDetail="true" />
            <p:pieChart id="custom" value="#{OpenedAccountsBranchLevelBean.pieModel}" legendPosition="w" showDataLabels="true"   
                style="width:500px;height:400px" sliceMargin="2">
                  <p:ajax event="itemSelect" listener="#{OpenedAccountsBranchLevelBean.itemSelect}" update="growl" />
            </p:pieChart>
        </left> 

我试过了;

  FacesContext.getCurrentInstance().
                 getExternalContext().redirect("/faces/OpenedAccountsProductTypeLevel.xhtml");

我也尝试过:

 FacesContext.getCurrentInstance().
                 getExternalContext().redirect("/OpenedAccountsProductTypeLevel.xhtml");

我的问题是如何在不必放入整个网址的情况下重定向?

1 个答案:

答案 0 :(得分:3)

尝试使用

 FacesContext context = FacesContext.getCurrentInstance();
    HttpServletRequest origRequest = (HttpServletRequest)context.getExternalContext().getRequest();
    contextPath = origRequest.getContextPath();
try {
        FacesContext.getCurrentInstance().getExternalContext()
                .redirect(contextPath  + "/faces/OpenedAccountsProductTypeLevel.xhtml");
    } catch (IOException e) {
        e.printStackTrace();
    }