📄 home.jsp
字号:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="css/dwstyles.css"/>
<title>dW Spring 2 Employee Data from DB2 via JPA</title>
</head>
<body>
<h1>Spring 2 JPA Employee List</h1>
<br>
<table>
<tr>
<th>Employee number</th>
<th>Name</th>
</tr>
<c:forEach var="emp" items="${employees}">
<tr>
<td><a href="empdet.cgi?empID=${emp.empid}">${emp.empno}</td>
<td>${emp.firstName} ${emp.midInitial} ${emp.lastName}</td>
</tr>
</c:forEach>
</table>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -