I have to display data fetched from DB to JSP. I am using spring MVC. I have stored data in List in java. Now i need to access this list in JSP and display it in tabular form.>
You can add your data in session and access it in table.jsp.
table.jsp
Once you get data on JSP you can easily render as you want using html + jsp combination.
Hope this helps.