Jsp页面(book_list.jsp)
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!-- 引入springMVC标签库 -->
<%@ taglib prefix="c" uri="https://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<%@include file="../managerhead.jsp"%>
<title>书籍信息</title>
</head>
<body>
<c:forEach items="${books}" var="book">
<tr>
<td>${book.bookid }</td>
<td>${book.bookname}</td>
</tr>
<br>
</c:forEach>
</body>
</html><%@ page language="java"