Hi,
Its been a while since I had to do some Java/Jsp...
I have a java class in WEB-INF/classes/MyClass.java The build in Netbeans is successful and I can see MyClass.class in the classes folder.
In my jsp page, I've got <%@ page import="MyClass" %>
Tomcat says that the import cannot be resolved...
I tried to put MyClass in a package(WEB-INF/com/MyClass) and then import the package into my Jsp file. The import doesnt throw an error anymore then, but I cannot instanciate a MyClass object, says the type is unresolved...
What am I doing wrong here..?
All help appreciated! :)