| Author |
Package javax.servlet
|
Sen George
Ranch Hand
Joined: Sep 21, 2005
Posts: 76
|
|
I wrote a simple Java program to work with Tomcat to display a simple web page. I have included the following import statements: import javax.servlet.*; import javax.servlet.http.*; import java.io.*; The following entries are there in the Classpath variable: c:\Sen\Java\JavaT\jdk1.5\bin; c:\Sen\Java\JavaT\jdk1.5\lib; c:\Sen\Java\JavaT\jdk1.5\; c:\Sen\Java\JavaT\jdk1.5\jre\bin\ On compiling, I get the following error: Ch1Servlet.java:1: package javax.servlet does not exist import javax.servlet.*; ^ Ch1Servlet.java:2: package javax.servlet.http does not exist import javax.servlet.http.*; Please advise what needs to be done to resolve this. Thanks in advance. Sen.
|
 |
Marilyn de Queiroz
Sheriff
Joined: Jul 22, 2000
Posts: 9033
|
|
|
The servlet stuff is not in the jdk. You need to download the j2ee.jar (j2eesdk
|
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
|
 |
Sunny Kumar
Ranch Hand
Joined: Oct 27, 2005
Posts: 57
|
|
Alternative: As you are using Tomcat for deploying your servlet, hence to compile it you can include in your classpath: Your_TOMCAT_installation_directory\common\lib\servlet-api.jar This should compile the servlet without any problem.
|
<a href="http://lifesmind.blogspot.com/" target="_blank" rel="nofollow">My Blog</a>
|
 |
Sen George
Ranch Hand
Joined: Sep 21, 2005
Posts: 76
|
|
By adding the jar entry in the Classpath variable worked. Thank you. Sen.
|
 |
 |
|
|
subject: Package javax.servlet
|
|
|