Respected PROGRAMMERS, There was a jsp file
<%@ page import="foo.*" %>
<html>
<body>
The page count is:
<%=Counter.getCount()%>
</body>
</html>
I kept "Counter" Class's package "foo" in
C:\apache-tomcat-6.0.32\webapps\God\WEB-INF\classes
and container could find the class from its package "foo"
But when I try to keep some other class file directly under \WEB-INF\classes and not in any specific package such as "foo", then container can't find that class.
Please help me