How to make a redirection on page load in JSF 1.x

后端 未结 5 1655
谎友^
谎友^ 2020-12-02 08:18

I have a web-application where the users can be sent directly to some specific pages (such as a page where he can view or edit an item). To achieve that, we provide a specif

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 09:05

    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    response.sendRedirect("somePage.jsp");
    

提交回复
热议问题