ssm(Spring+Spring mvc+mybatis)——showDept.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'showDept.jsp' starting page</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

  </head>

  <body>
    <h1>所有部门列表:</h1>
    <a href="saveDept.jsp">添加部门</a>
    <table border="1" cellspacing="0">
        <tr><td>编号</td><td>名称</td><td>地址</td><td>操作</td></tr>
        <c:forEach items="${deptList }" var="dept">
            <tr><td>${dept.id }</td>
            <td>${dept.name }</td>
            <td>${dept.loc }</td>
            <td><a href="getDeptById.do?id=${dept.id }">修改</a>☆☆☆☆☆<a href="delEntity.do?id=${dept.id }">删除</a></td></tr>
        </c:forEach>
    </table>
  </body>
</html>
原文地址:https://www.cnblogs.com/a1111/p/12816074.html