I have this Java code that was written by another person, in particular JSP. I'm trying to figure out where everything is.
In my index.jsp (loadable main file) it imports a specific namespace (I suppose tomcat does all the compilation, I don't know):
<%@ page import="org.sgrp.SearchResults"%>
This physical location does not exist in my CLASSPATH, so I believe this refers to the namespace inside the .jar code structure (correct me if I am wrong).
So how can I find the source code for this? Does Tomcat set a specific CLASSPATH location for each project?
EDIT
I'm trying to figure out if Tomcat should follow a specific structure, so I can find where the source code for this stuff is.
java jsp tomcat
Luca matteis
source share