<!-- userList.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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>用户列表页面</title>
</head>
<body>
<table border="1">
<tr>
<th>用户ID</th><th>用户名</th><th>年龄</th>
</tr>
<c:forEach items="${userList }" var="user">
<tr>
<td>${user.id }</td><td>${user.name }</td><td>${user.age }</td>
</tr>
</c:forEach>
</table>
</body>
</html>
哪里设置有问题 ? 没有跳转到 jsp 页面?请教..
你这些页面是放在WEB-INF下面吗?