I'm trying to access a servlet in my jsp using
<jsp:forward/>. The structure that I'm using is based off of this article:
So, I put the relative path to the servlet in the jsp tag and consistently get a 404 error when trying to access it.
Entire code of page:
The jsp is in the default /web directory and the class resides in /web/WEB-INF/classes/user/ directory.
My question is: how in the #$#@! do I get this servlet to load? Should be simple, but as per usual, it's far from it.
Thanks in advance.
<jsp:forward/>. The structure that I'm using is based off of this article:
So, I put the relative path to the servlet in the jsp tag and consistently get a 404 error when trying to access it.
Entire code of page:
Code:
<jsp:useBean id="form" class="user.getEmployeeFormData" scope="request">
<jsp:setProperty name="form" property="*" />
</jsp:useBean>
<jsp:forward page="user/DBEmployeeUpdate" />
The jsp is in the default /web directory and the class resides in /web/WEB-INF/classes/user/ directory.
My question is: how in the #$#@! do I get this servlet to load? Should be simple, but as per usual, it's far from it.
Thanks in advance.