It's my first Servlet program but even after adding the classpath of servlet-api.jar cmd gives me the same boring error saying: "java.servlet package does not exist"
Can anybody help me with this?
|
|
Make sure that you've a concrete servletcontainer installed. For example, Apache Tomcat. At least the one where you target your webapplication to. The Servlet API is then located in
Or if it's on Windows, use semicolon
|
|||||||||||
|
|
Sounds like you're still not set up correctly. Double-check everything your classpath, print out the PATH in that particular CMD window and make sure that JAR is there. Sounds like you're not using Eclipse, so you'll have to do a lot of this confusing set-up work by hand. |
|||
|
|
With dynamic web projects (eclipse) it should be automatically added. If not- just download the jar and add it to the class path. |
|||||
|
|
|
First of all, Servlet is of To run a servlet on Tomcat, you must place your WAR file (that contains the compiled Servlet) under |
|||||||||||
|