我正在使用 jsf 2.0
我对 PreRenderView 有疑问。
在我的 Bean 中,我有类似的方法
public void init() throws Exception
{
FacesContext.getCurrentInstance().getExternalContext().redirect("/To My Page");
if(!FacesContext.getCurrentInstance().isPostback())
{
System.out.println("Kshitij");
}
}
执行此方法时,它还会在 servler 日志中打印“Kshitij”。
然后重定向到页面。
为什么?我认为它必须首先重定向到页面。