JSF 和 JSP bean 通信
有什么方法可以将JSF托管bean的值存储在简单bean中以便在JSP页面中访问吗?
Is there is any way through which we can store the value of JSF managed bean in simple bean to access in JSP page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加到页面、请求、会话或应用程序范围的任何 bean 都可供 JSP 使用。您只需要服务器端的一个组件,可以访问这些范围,即可为您添加它。
Any bean that you add to page, request, session, or application scope is available to a JSP. You just need a component on the server side, with access to the those scopes, to add it in for you.
如果您需要以编程方式从 JSF 托管 bean 获取值,则可以使用如下内容:
其中表达式类似于 #{myBean.someValue}。
现在这个 foo 可以存储在任何其他可以存储在任何作用域中的 bean 中,或者 foo 可以直接存储在某个作用域中。
当然,上面显示的代码片段需要在 JSF 上下文中执行。如果 JSP 页面在 JSF 上下文中执行,您还可以将片段作为 scriptlet 放置在 JSP 页面上。这将是一个非常糟糕的做法,但对于一些快速破解来说,这可能是一种解决方法。
If you need the value from a JSF managed bean programmatically, you can use something like this:
Where expression is something like #{myBean.someValue}.
Now this foo can be stored in any other bean that can be stored in any scope, or foo could be directly stored in some scope.
Of course the code fragment shown above needs to be executed when still in a JSF context. If the JSP page is executed within a JSF context, you could also place the fragment on the JSP page as a scriptlet. This would be a very bad practice, but for some quick hack it might be a workaround.