I’m having some problems with forwarding from one JSP file to another .
At the beginning I’m in adminSuccess.jsp ,and I want to move to adminPage.jsp .
Updated – Here is the hierarchy tree of the project :

And that’s the code of adminSuccess.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="adminAdds1">
<a href="results/adminAddNewManager.jsp">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>Add a new employee to the bank system</legend>
<form action="adminAdds2">
<a href="results/adminAddNewEmployee.jsp">Press here to continue</a>
</form>
</fieldset>
</body></html>
OUT:
HTTP Status 404 - /WebBank/results/adminAddNewManager.jsp
--------------------------------------------------------------------------------
type Status report
message /WebBank/results/adminAddNewManager.jsp
description The requested resource (/WebBank/results/adminAddNewManager.jsp) is not available.
Clearly , one jsp can’t see the other, so how can I fix that , without taking out of the library one of the jsp files , since it would require change a lot of other code .
Regards
Resources under WEB-INF are not publicly accessible resources if you want to access those you need to forward request from your servlet or JSP