一开始我在adminPage.jsp
:
<!DOCTYPE html>
<html>
<head><title>System Administrator Page</title>
<link rel="stylesheet"
href="./css/styles.css"
type="text/css"/>
</head>
<body>
<h1>Hello ${name.firstName} ${name.lastName} , You've logged in successfully!</h1>
<h1>
Please choose one of the following options
</h1>
<fieldset>
<legend>Add a new manager to the bank system</legend>
<form action="adminAddNewManager">
<a href="registration.jsp">Press here to continue</a>
</form>
</fieldset>
我想移动到registration.jsp
位于同一文件夹中的adminPage.jsp
.
但是当我尝试移动到adminPage.jsp
:
我得到:
HTTP Status 404 - /WebBank/registration.jsp
--------------------------------------------------------------------------------
type Status report
message /WebBank/registration.jsp
description The requested resource (/WebBank/registration.jsp) is not available.
--------------------------------------------------------------------------------
Apache Tomcat/7.0.28
这是为什么 ?
问候