I'm trying to use eclipse for Java EE to develop web applications. I need to use Tomcat as my server. I've downloaded Tomcat and it's running. But my program doesn't compile. I get the following error: "The import javax.servlet can't be resolved". What do I need to do?
|
You need to add the Servlet API to your classpath. In Tomcat 6.0, this is in a JAR called If you want to leave the JAR in Tomcat's
Or, if you copy the JAR into your project:
|
|||||||||||||
|
|
If not done yet, you need to integrate Tomcat in your Servers view. Rightclick there and choose New > Server. Select the appropriate Tomcat version from the list and complete the wizard. When you create a new Dynamic Web Project, you should select the integrated server from the list as Targeted Runtime in the 1st wizard step. Or when you have an existing Dynamic Web Project, you can set/change it in Targeted Runtimes entry in project's properties. Eclipse will then automagically add all its libraries to the build path (without having a copy of them in the project!). |
|||
|
Add the |
|||
|
|
|
Had the same problem in Eclipse. For some reason I didn't have the servlet.jar file in my build path. What I wound up doing was copying a "lib" folder from another project of mine to the project I was working on, then manually going into that folder and adding the servlet.jar file to the build path (option shows up when you right-click on the file in the project explorer). |
|||
|
|