如何在托管 bean 构造函数中转发到另一个页面?
如何转发到支持 bean 构造函数内的另一个页面?我不想使用重定向。
编辑:
非常感谢BalusC。
如果我在 getter 方法中调用 FacesContext.getCurrentInstance().getExternalContext().dispatch("page.jsf") 是否安全? getter 方法将由 JSF 在渲染响应阶段调用。
How can I forward to another page inside the constructor of a backing bean? I don't want to use redirect.
EDIT:
Thank you very much BalusC.
Is FacesContext.getCurrentInstance().getExternalContext().dispatch("page.jsf")
safe if I call it inside a getter method? The getter method will be invoked by JSF in the Render Response phase.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用一个方法来执行此操作。构造函数不是方法,不能返回“PAGE2”字符串。
You need to invoke a method to do this. Constructors are not methods, and cannot return the "PAGE2" string.