Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何缩短 jsf 生命周期,以便在任何模型更新之前呈现响应?在本文档 JSF Spec V1.2 RevB 第 59 页的图表中,它显示您可以从“应用请求值”阶段直接跳到“呈现响应”阶段。我该怎么做呢?我已经连接了一个 PhaseListener,但不确定我是否可以使用它来执行此操作。谢谢,本安德森
在上下文中调用renderResponse方法。
FacesContext.getCurrentInstance().renderResponse();
一旦当前阶段结束,生命周期将跳到响应。