1.jsp页面中引入:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
2.建立相应的table
<table class="table" >
<thead>
<tr>
<th>序号</th>
<th>姓名</th>
<th>已购课时</th>
<th>当前课时</th>
<th>剩余课时</th>
</tr>
</thead>
<tbody>
<c:forEach items="${userList2}" var="user" varStatus="s">
<tr class="success">
<td>${s.count}</td>
<td>${user.username}</td>
<td>${user.purchased}</td>
<td>${user.current}</td>
<td>${user.surplus}</td>
</tr>
</c:forEach>
</tbody>
</table>
3.输出样式展示