JSP- getting array data into jsp from java

前端 未结 3 403
栀梦
栀梦 2021-01-26 06:31

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.

3条回答
  •  北荒
    北荒 (楼主)
    2021-01-26 07:01

    You can add your data in session and access it in table.jsp.

    Once you get data on JSP you can easily render as you want using html + jsp combination.

    Hope this helps.

提交回复
热议问题