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
Create a
FooSessionBeanproperty (getter/setter) inFooRequestBeanand inject it using thefaces-config.xml: