Calling a method in backing bean whenever a page is loaded/reloaded
Hi,
What is the best way to call a certain method in a backing bean whenever the jsp page is reloaded?
I have a managed bean that provides the data for a form and the bean gets it's data from a SQL DB. I want the bean to reload the data from the DB when and only when the page is loaded or reloaded. (I.e. it should the call method loadData() )
What is the best way to do this?
/R

