instructorlist.jsp
来自「spring in action 源代码」· JSP 代码 · 共 21 行
JSP
21 行
<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %><%@ taglib uri="http://acegisecurity.sf.net/authz" prefix="authz" %><p>At Spring Training, Inc., we hire only the best and brightestinstructors to help boost your technical skills.</p> <authz:authorize ifAllGranted="ROLE_INSTRUCTOR"> <a href="../faculty/createInstructor.htm">Add instructor</a><br> </authz:authorize> <ul> <c:forEach var="instructor" items="${instructors}"> <li><a href="displayInstructor.htm?id=${instructor.login}">${instructor.firstName} ${instructor.middleName} ${instructor.lastName}</a> <authz:authorize ifAllGranted="ROLE_INSTRUCTOR"> <a href="../faculty/editInstructor.htm?id=${instructor.login}">[edit]</a> <a href="../faculty/deleteInstructor.htm?login=${instructor.login}">[delete]</a> </authz:authorize> </c:forEach> </ul>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?