JSF redirect on page load

前端 未结 4 622
無奈伤痛
無奈伤痛 2021-02-10 18:41

Short question: Is it possible to do a redirection, say when a user isn\'t logged in, when a page is rendered?

4条回答
  •  清酒与你
    2021-02-10 19:16

    In a PhaseListener try:

    FacesContext ctx = FacesContext.getCurrentContext();
    ctx.getApplication().getNavigationHandler()
         .handleNavigation(ctx, null, "yourOutcome");
    

提交回复
热议问题