I have a variable in backing bean that needs to get reset to null whenever the associated page is opened using the relevant menu link. Is there a way to run a initialization code in the backing bean whenever the relevant menu link is clicked? Contsructor runs only the first time the menu link is clicked. I guess the bean is then retained in the jsf context and is not getting recreated. Is there a way to ensure a new object of that backing bean is created each time the menu link is clicked? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Couldn't you just put the bean in request scope? Another option would be to use a setpropertyactionlistener on the menu. When the menu is clicked, set the value to "null". |
|||
|
|
|
You have the following options: 1 . Change the bean to the request-scoped bean 2 . Use the
And |
|||
|