在jsf中,我可以将sessionscope bean注入到actionlistener中吗?

发布于 2024-11-17 03:07:22 字数 65 浏览 2 评论 0原文

在 jsf 中,我想将 sessionscope bean 注入到 actionlistener 实现中。能做到吗?

In jsf, I want to inject a sessionscope bean into an actionlistener implementation. Can it be done?

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

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

发布评论

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

评论(2

身边 2024-11-24 03:07:22

像这样:

YourBean testBean = (YourBean)FacesContext.getCurrentInstance().getExternalContext()
               .getSessionMap().get( "yourBean");

Like this:

YourBean testBean = (YourBean)FacesContext.getCurrentInstance().getExternalContext()
               .getSessionMap().get( "yourBean");
打小就很酷 2024-11-24 03:07:22

经历这个..

http:// www.oio.de/public/java/jsf-best-practices-javaserver-faces-session-tips.htm

    ELContext elContext = context.getELContext();
    context.getApplication().getExpressionFactory()
       .createValueExpression(elContext,"#{sessionScope.sessionValue}", String.class)
       .setValue(elContext, this.getSessionValue());

go through this..

http://www.oio.de/public/java/jsf-best-practices-javaserver-faces-session-tips.htm

or

    ELContext elContext = context.getELContext();
    context.getApplication().getExpressionFactory()
       .createValueExpression(elContext,"#{sessionScope.sessionValue}", String.class)
       .setValue(elContext, this.getSessionValue());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文