I haven't done any JSP work in years, so I can't help you with that part, but the above error is a 404. That means that the server cannot find the file you are looking for, so double check the filepath to make sure the jsp page is located there.
A simple test can be done to verify your JSP is operational:
PHP Code:
<html>
<head>
<title>JSP Test</title>
</head>
<body>
<h1><% out.println("Hello World!") %></h1>
</body>
</html>
If that shows the hello world! message, your JSP is good to go.