Is there a way to call multiple methods from different backing beans in JSF?
I have an application that stores user information. I have multiple backing beans which are broken down into schedule, address, phone.. etc.
When the application initially loads everything works find but since all of my views are of type @ViewScope
the lists of schedule, address, phone are maintained even if a new user is displayed.
I need to manually set the schedule, address, and phone lists to null when the user navigates away from the current person they are viewing IE I need to call a method in each managed bean at one point in time (When the user clicks on a commandLink).
Is it possible to call multiple bean methods on one commandLink?