写一个学生列表页面list.jsp
时间: 2023-12-16 09:04:49 浏览: 84
以下是一个简单的学生列表页面list.jsp的示例代码:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>学生列表</title>
</head>
<body>
<h1>学生列表</h1>
<table>
<thead>
<tr>
<th>学号</th>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<c:forEach var="student" items="${students}">
<tr>
<td>${student.id}</td>
<td>${student.name}</td>
<td>${student.age}</td>
<td>${student.gender}</td>
<td><a href="edit.jsp?id=${student.id}">编辑</a> | <a href="delete?id=${student.id}">删除</a></td>
</tr>
</c:forEach>
</tbody>
</table>
<p>
<a href="add.jsp">添加学生</a>
</p>
</body>
</html>
```
解释一下代码:
1. 第1行到第4行是jsp页面的声明,指定编码为UTF-8。
2. 第8行到第10行是页面标题和标题标签。
3. 第12行到第23行是学生列表的表格结构,包括表头和表体。
4. 第15行到第22行使用JSTL的forEach标签循环遍历学生列表,并输出学生的信息。
5. 第19行和第20行分别是编辑和删除学生的链接,链接中的参数使用了EL表达式。
6. 第25行到第27行是添加学生的链接。
在使用这个页面之前,需要先从后台获取学生列表并将其存储在request的属性中,例如:
```
List<Student> students = studentService.findAll();
request.setAttribute("students", students);
```
然后将request转发到list.jsp页面即可。
阅读全文