Hallo everybody
In Tomcat (Version 5.0) jsp files are usually placed under
/webapps/[myWebApplication]/ .
Under /webapps/[myWebApplication]/Web-INF/classes/ I have all my java
classes.
How can I access this classes from my JSP-File?
Thanks Peter
arvind - 28 Feb 2005 07:18 GMT
Since the classes folder will be in the classpath, u can access any class
that is present in the classes folder in the usual way.If ur classes r
placed in a jar file in the classes folder then u have set ur classpath
variable to include those jar files....
Hope this clarifies...