|
Re: Java Quest
|
Posted: Mar 6, 2002 11:51 AM
|
|
1. I'm guessing your $CLASSPATH or %classpath% is not set to point to a directory or JAR file which contains the http package. If you're compiling from the commandline under NT, type "echo %classpath%" to see the places where Java will look for things.
2. Make will indeed execute javac against as many .java files as you like. Write your Makefile accordingly.
3. If any Java and/or servlet programs reference in their code any Tomcat Java classes, then it will be necessary to put the Tomcat .class files or .jar file(s) into your $CLASSPATH when you invoke javac.
|
|