如何从请求 bean 更改会话 bean 的值?
我有一个会话 bean FooSessionBean
,它有一个布尔属性:visible
。
我想更改 FooRequestBean 中 visible
属性的值。除了将 FooRequestBean 的范围更改为会话而不是请求(以便能够将 FooSessionBean 注入到我的 FooRequestBean 中)之外,还有什么方法可以做到这一点?
提前致谢。
PS:我使用的是JSF 1.2
I have a session bean FooSessionBean
which has a boolean property: visible
.
I want to change the value of the visible
property from my FooRequestBean. Is there any way to do this, other than changing the scope of FooRequestBean to session instead of request (to be able to inject FooSessionBean
into my FooRequestBean
)?
Thanks in advance.
Ps: I'm using JSF 1.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
FooRequestBean
中创建一个FooSessionBean
属性(getter/setter),并使用faces-config.xml
注入它:Create a
FooSessionBean
property (getter/setter) inFooRequestBean
and inject it using thefaces-config.xml
: