Forum Moderators: phranque
Under webapps, there’s an application that we’ll call sampleapp.
Under sampleapp is
-A folder called web which has adminjava_lt.jsp
Under the web folder is
-A folder called WEB-INF
Under WEB-INF is a folder called classes
Under classes are:
-a folder called beans
-a folder called servlets
I believe this is the directory structure expected in the Tomcat manual.
***********************
The beginning code of adminjava_lt.jsp is:
<%@ page language="java"
import="java.sql.*"
import="java.io.*"
import="java.util.*"
import="java.util.Date"
import="java.text.*"
import="javax.servlet.*"
import="beans.*"
%>
<jsp:useBean id="ltable" class="beans.BNLDatabase"/>
<jsp:useBean id="ptable" class="beans.BNMetadata"/>
<jsp:useBean id="list" class="beans.BNCreateListTable"/>
****
When I enter:
[localhost:8080...] in the address window I’m getting the error message
package beans does not exist
How can I get Tomcat to find the beans folder.
Thanks,
Robin