Sortable « Table « JPA Q&A





1. Sortable HTML table in Java    stackoverflow.com

I want to add sorting to a HTML table populated by Hibernate. The actual sorting has to be done by a database. To feed "Order by" condition to the database Java ...

2. Pageable, Sortable tables with very large data sets    forum.hibernate.org

Can I get the opinion of the group on the current best way to handle a Java Web Application that wants to display Pageable, Sortable tables with very large data sets? My current strategy is: 1) do a "select count(1) from tableA" to get the total # of records. Could be over 1,000,000. 2) do a "select * from tableA order ...