I would like to have a session scoped JSF bean with one property that is request (page) scoped. Is it possible at all?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, that's not possible. Managed property injection only happens during creation of the bean. However, when a session scoped bean is been created there is not necessarily a request present and the injected request scoped bean would be invalid in subsequent requests in the remnant of the session. Do it the other way round. E.g.
and
|
|||
|
|