I am implementing server side pagination using Richfaces, but the implementation using PaginatingDataModel requires bean to be saved in SessionScope. Using JSF 2.0, RichFaces 4.4. Refer URL below:
http://katzmaier.blogspot.in/2010/03/richfaces-server-side-pagination.html https://community.jboss.org/thread/204250
Is there any alternate implementation to implement server side pagination using request scope? By server side pagination, I mean data for each page to be fetched by executing queries instead of retrieving all records at once.
@ViewScopedmanaged bean. If you're using JSF 1.2 + RichFaces 3.x, you can add the@KeepAliveannotation to your request scoped managed bean class in order to make it live while the user is still in the same view. - Luiggi Mendoza