如何在JSF操作方法中重定向到纯HTML页面?

时间:2013-01-25 03:41:47

标签: jsf navigation

我有一个纯HTML页面error.html。当我使用

return "error.html?faces-redirect=true";

它实际上会重定向到error.xhtml,而不是error.html

如何在JSF操作方法中重定向到非JSF页面?

1 个答案:

答案 0 :(得分:6)

导航案例结果被视为JSF视图。因此它始终需要JSF视图。如果由于某些不明原因而无法将error.html重命名为error.xhtml(请记住,您可以在Facelets页面中安全地使用纯HTML),那么您需要将重定向发送到非JSF资源使用ExternalContext#redirect() 自己

public void someAction() throws IOException {
    // ...

    ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
    ec.redirect(ec.getRequestContextPath() + "/error.html");
}