I'm looking for ideas to implement a pagination with Struts2 and Hibernate.
My table contains too many lines and it should be as I can see only 20 at a time, for example. With PREVIOUS
and NEXT
buttons.
-
ok i have found this http://www.displaytag.org/1.2/ what do you think ? knowing in my app i have fitch data in iterator – stoner Sep 23 '13 at 14:31
-
DisplayTag works. But it's over ten years old... I would stick with something new (see jQGrid or others). – Andrea Ligios Sep 23 '13 at 14:52
-
Ok if you have already used please put an exemple as an answer – stoner Sep 23 '13 at 15:19
-
@stoner The example is below. – Roman C Sep 24 '13 at 07:13
2 Answers
The pagination example is here. As I've already explained in my previous answer displaytag is a good library and was popular about decade, it's open source, so you could easily grab ideas from the sources, however you can use it as is, and it's not easy to modify it to suit your needs. That's why you are looking for ideas. Thanks the guy on the web who share the ideas that I agree with, you can find in his code example.
If you want to implement pagination in struts2 and hibernate the best library I would suggest would be Struts2Jquery Plugin...
In the widgets menu.. see the GRID section. It implements pagination for you with more add-on facilities that you would like to have. And the best part.. you write least javascript for it.. Try it.. I am currently using it in my project!

- 2,740
- 19
- 28