Suppose I have the following requirements (basically, editing DB data from JSP): 1. To display the content of a database table in a JSP page 2. A table may contain lots of record, so pagination should be possible 3. Allow the user to modify the content of the table (update, delete)
What would you recommend to do this ?
I'm considering using the DisplayTag to show the content. In the library's help, they show two solutions to retrieve data: 1. Using JSTL's sql tags 2. Using dynabeans