Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 jsp 和 servlet 的新手。在搜索可变编号参数后,我必须在jsp页面中显示数据库中的记录列表。我在 servlet 中创建了 listRecords 方法。请帮忙
创建记录的列表(ArrayList)并将其传递给jsp页面(通过请求参数或会话)。
然后使用jstl显示列表中的每个元素这是一个示例
<table> <c:forEach var="ele" items="${list}"> <tr> <td>${ele.name}</td> <td>${ele.value}</td> </tr> </c:forEach> </table>