I am having a really difficult time dealing with what Scope I should use on my application.
I am using Primefaces using a for my initial view layout. Outside of the layout I have dialogs that are used by many different managed beans.
Within my layout I have a header, footer a navgiation on the left and then the current view in the center. So my view looks as follows:
<h:body id=body">
<p:layoutUnit id=head" position="top">
<ui:insert name="header">
</p:layoutUnit>
<p:layoutUnit id=head" position="bottom">
<ui:insert name="footer">
</p:layoutUnit>
<p:layoutUnit id=head" position="left">
<ui:insert name="menu">
</p:layoutUnit>
<p:layoutUnit id=head" position="right">
<ui:insert name="main">
</p:layoutUnit>
<p:dialog widgetVar="addAddressDialog" header="Add New Address">
<h:form id="insertAddress">
<h:inputText id="insert_address" label="Address" />
</h:form>
</p:dialog>
<p:dialog widgetVar="updateAddressDialog" header="Add New Address">
<h:form id="updateAddress">
<h:inputText id="update_address" value=#{addressBean.selectedAddress.address" />
</h:form>
</p:dialog>
The issue I am having is when my application first loads the addressBean's @PostConstruct is getting called because the view is being loaded. In the @PostConstruct I initialize the list of addresses associated to an specific id called contactId. At this point though the contactId has not been instantiated. That happens once he user interacts with the "main" view.
My Scope for the addressBean is currently @ViewScope which works find but only for the first time that the contactId is set. After that it continues to retain the information that was populated even if the contactId changes because the @PostConstruct is never called again and the view never seems to go out of scope.
I have tried @RequestScope and this works actually really well. But I run into a problem when displaying the addresses in a datatable inside the "main" view. I have a button at the bottom of my datatable that called the insertAddressDialog.show(). It opens the first time and I can insert the data but 1. The view the datatable never shows the new record that I have inserted because I guess the view has been lost at that point. And 2. The button on the datable is no longer alive or active, so the dialog wont open after the first time a user inserts a record.
This seems like this should be an easy thing but my application has many nested views which is causing the problem. Any insight on how to handle something like this would really be a help.