Our page has a datatable which shows records from a web service. The web service queries a database, and the query can take from 10 secs to 100 secs.
I was initially loading the arraylist binded to the datatable in the backing bean constructor:
private ArrayList myList;
public MyBean
{
myList = WebServices.getList();
}
In this scenario, the entire page starts to render only after the web service returns all data.
Where should I call the webservice (i.e., do myList = WebServices.getList(); ) in order to have the rest of the page load in parallel, and show a progress bar or something in the datatable while the webservice runs?
I guess my concepts about the JSF/IceFaces lifecycle are not clear...
Also, this is not about lazy loading, because for that we would have to implement pagination in our datatabase query, too.
Thanks!