Hi,
I am using Struts2 hybernate and Spring. My requirement is to get the user records from the database, store it in a List and display the same in
jsp page (as a table). I have written the query for getting the user records from the database. I have the List in my action class populated with values(taken from database). How can I display the list values in a table in the jsp page?
My code in action class is like this
List brandDetailID = obj.select(brandID);
Can anybody please give me a suggestion?
Thanks.
Ganesh