我在 JSP 页面中有以下内容
<table border=1>
<thead>
<tr>
<th>User Id</th>
<th>First Name</th>
<th>DOB</th>
<th colspan=2>Action</th>
</tr>
</thead>
<tbody>
<c:forEach items="${users}" var="user">
<tr>
<td><c:out value="${user.userid}" /></td>
<td><c:out value="${user.firstName}" /></td>
<td><fmt:formatDate pattern="dd-MMM-yy" value="${user.dob}" /></td>
<td><a href="UserController?action=edit&userId=<c:out value="${user.userid}"/>">Update</a></td>
<td><a href="UserController?action=delete&userId=<c:out value="${user.userid}"/>">Delete</a></td>
</tr>
</c:forEach>
</tbody>
</table>
<p><a href="UserController?action=insert">Add User</a></p>
普通用户通过单击添加用户按钮只能输入 10 行,管理员可以在表格中输入任意数量的行。
管理员添加的行只能被管理员查看,其他所有由普通用户添加的行,普通用户无法查看管理员添加的行。
如何根据上述规则有条件地在 JSP 中呈现行?
谢谢