如何在托管 bean 构造函数中转发到另一个页面?

发布于 2024-09-11 22:36:20 字数 265 浏览 5 评论 0原文

如何转发到支持 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

又怨 2024-09-18 22:36:20

您需要调用一个方法来执行此操作。构造函数不是方法,不能返回“PAGE2”字符串。

You need to invoke a method to do this. Constructors are not methods, and cannot return the "PAGE2" string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文