文件结构

viewAll.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%@include file="link.html" %>
<c:if test="${not empty requestScope.message}">
<script>
alert("<c:out value="${requestScope.message}"></c:out>");
</script>
</c:if>
</head>
<body>
<%@include file="header.html" %>
<table cellpadding="10" cellspacing="10" style="margin-left:30%;">
<tr>
<td>编号</td>
<td>操作</td>
</tr>
<c:forEach items="${list}" var="cn" varStatus="fn">
<tr>
<td>${fn.count}</td>
<td>
<a href="ResumeService?method=show&id=${cn}">查看</a>
</td>
<td>
<a href="ResumeService?method=delete&id=${cn}">删除</a>
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
备注
参考博客
用eclipse创建一个javaweb项目