跳过 jsf 生命周期阶段
如何缩短 jsf 生命周期,以便在任何模型更新之前呈现响应?在本文档 JSF Spec V1.2 RevB 第 59 页的图中,它显示您可以从“Apply Request Values”阶段直接跳到“Render Response”阶段。我该怎么做?我已经连接了一个 PhaseListener,但不确定是否可以使用它来执行此操作。 谢谢, 本·安德森
How do I short circuit the jsf lifecycle so that the response is rendered before any model updates? In the diagram of page 59 of this document JSF Spec V1.2 RevB, it shows that you can skip from the "Apply Request Values" phase directly to the "Render Response" phase. How do I do this? I've got a PhaseListener hooked in, but not sure if I can use it to do this or not.
Thanks,
Ben Anderson
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 renderResponse方法结合上下文。
当前阶段结束后,生命周期将立即跳至响应。
Call the renderResponse method on the context.
The lifecycle will skip to the response as soon as the current phase ends.