我有服务器端倒数计数器。当它 == 0 时,方法应该执行ExternalContext#dispatch()
,但它没有这样做。方法ExternalContext#redirect()
在这个地方正常工作。
....
}else{
try {
FacesContext.getCurrentInstance().getExternalContext().dispatch("result.xhtml");
} catch (IOException e) {
e.printStackTrace();
}
}
....
我尝试了几种拼写url(result,result.xhtml,\result.xhtml
等)的方法,结果相同。