我的JSF页面上有一个CommandButton。我可以将用户重定向到同一个JSF页面,但使用命名锚点吗?类似的东西:“../ page.jsf #link”
谢谢, OLES
P.S。:我正在使用JSF 1.2
答案 0 :(得分:3)
您无法使用导航案例。您需要ExternalContext#redirect()
。
public void submit() throws IOException {
// ...
FacesContext.getCurrentInstance().getExternalContext().redirect("page.jsf#link");
}