On Thu, Sep 13, 2001 at 03:09:24PM -0500, RAndy Peter wrote:
> I'm using Tomcat 3.2, stand alone.  When I put my servlets under
> WEB-INF/classes, everything works fine.  But when I try to place them in the
> sub-directory required by a package (for example, WEB-INF/classes/aaa/bbb/),
> Tomcat can no longer find them.  I've tried several different placements of
> the sub-directory structure, but to no avail.  Anybody care to help me out?

Simple classpath stuff. If you have a class Foo in aaa/bbb, then it must
be in package aaa.bbb:

package aaa.bbb;
public class Foo {
        ..
}

--Jeff

Reply via email to