📄 empdetails.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 Detail Information</title>
</head>
<body>
<h1>Spring 2 JPA Employee Details</h1>
<br>
<table>
<tr>
<th colspan="2">Employee Information</th>
</tr>
<tr>
<td>Employee No.</td><td>${emp.empno}</td>
</tr>
<tr>
<td>Name</td><td>${emp.firstName} ${emp.midInitial} ${emp.lastName}</td>
</tr>
<tr>
<td>Address</td><td>${emp.addr.number} ${emp.addr.street}</td>
</tr>
<tr>
<td>Phone</td><td>${emp.phoneNumber}</td>
</tr>
<tr>
<td>Salary</td><td>${emp.salary}</td>
</tr>
<tr>
<td>Bonus</td><td>${emp.bonus}</td>
</tr>
<tr>
<td>Commission</td><td>${emp.commission}</td>
</tr>
</table>
<br/>
<br/>
<a href="home.cgi">Go back to employee list</a></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -