gpt4 book ai didi

java - 如何使用 Spring Boot 创建列表类型 View 以从数据库中获取所有记录?

转载 作者:行者123 更新时间:2023-12-02 00:59:15 28 4
gpt4 key购买 nike

建议使用 Spring Boot 创建列表页面的步骤。我已经使用 jsp 页面获取了一条记录,但无法再获取了。代码如下。

<body>

<div class="table-responsive-sm">
<table class="table table-dark table-hover">
<thead>
<tr>
<th>Employee ID</th>
<th>First name</th>
<th>Last name</th>
<th>Designation</th>
<th>E-mail</th>
<th>Mobile</th>
</tr>
</thead>
<tbody>
<tr>
<td>${employee.id}</td>
<td>${employee.fname}</td>
<td>${employee.lname}</td>
<td>${employee.designation}</td>
<td>${employee.email}</td>
<td>${employee.mobile}</td>
</tr>
</tbody>
</table>
</body>

最佳答案

假设您使用 JSTL 标签。因此,您可以使用标签 <c:forEach> </c:forEach> 循环记录。 .

假设变量employees包含您的所有数据。因此,您的代码将如下所示:

<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %>

<!Doctype html>
<html>
<head>
<!-- Some codes here -->
</head>

<body>

<div class="table-responsive-sm">
<table class="table table-dark table-hover">
<thead>
<tr>
<th>Employee ID</th>
<th>First name</th>
<th>Last name</th>
<th>Designation</th>
<th>E-mail</th>
<th>Mobile</th>
</tr>
</thead>
<tbody>
<c:forEach var="employee" items="${employees}">
<tr>
<td>${employee.id}</td>
<td>${employee.fname}</td>
<td>${employee.lname}</td>
<td>${employee.designation}</td>
<td>${employee.email}</td>
<td>${employee.mobile}</td>
</tr>
</c:forEach>
</tbody>
</table>
</body>
</html>

关于java - 如何使用 Spring Boot 创建列表类型 View 以从数据库中获取所有记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60919656/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com