如何将托管 bean 注入 FacesContext?

发布于 2024-10-19 21:03:43 字数 131 浏览 2 评论 0原文

如何在 FacesContext 中将 @ApplicationScoped 托管 bean 替换为我自己的副本?我所拥有的只是一个 FacesContext 实例(我在 JSFUnit 内部)。

How can I replace an @ApplicationScoped managed bean with my own copy of it in FacesContext? All I have is an instance of FacesContext (I'm inside JSFUnit).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

原来分手还会想你 2024-10-26 21:03:43

应用程序范围的 bean 存储在 以托管 bean 名称作为键的应用程序映射

所以,应该这样做:

FacesContext.getCurrentInstance().getExternalContext()
    .getApplicationMap().put("managedBeanName", new Bean());

顺便说一下,在 JSF 更深入的范围内,直到 Servlet API,应用程序映射只是 ServletContext 属性。了解何时您手中只有 ServletContext 非常有用。在同一行中, 会话映射映射到HttpSession属性和请求映射HttpServletRequest 属性。分别将它们用于会话和请求范围的 bean。

Application scoped beans are stored in the application map with the managed bean name as key.

So, this should do:

FacesContext.getCurrentInstance().getExternalContext()
    .getApplicationMap().put("managedBeanName", new Bean());

By the way, deeper under the JSF covers up to the Servlet API, the application map is just a mapping of ServletContext attributes. Useful to know when it happens that you've only the ServletContext at your hands. And in the same line, the session map maps to HttpSession attributes and the request map to HttpServletRequest attributes. Use them for session and request scoped beans respectively.

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