35

I have started to write app that can run on Google App Engine.
But when I wanted to use my code from Netbeans to Eclipse I had an errors on:

import javax.servlet.annotation.WebServlet;

and

@WebServlet(name = "MyServlet", urlPatterns = {"/MyServlet"})

the errors are:

The import javax.servlet.annotation cannot be resolved
WebServlet cannot be resolved to a type

I tried to import the servlet-api.jar to Eclipse but still the same, also tried to build and clean the project. I don't use Tomcat on my Eclipse only have it on my Netbeans. How can I solve the problem?

Vitaly Menchikovsky
  • 7,684
  • 17
  • 57
  • 89

12 Answers12

57

I tried to import the servlet-api.jar to eclipse but still the same also tried to build and clean the project. I don't use tomcat on my eclipse only have it on my net-beans. How can I solve the problem.

Do not put the servlet-api.jar in your project. This is only asking for trouble. You need to check in the Project Facets section of your project's properties if the Dynamic Web Module facet is set to version 3.0. You also need to ensure that your /WEB-INF/web.xml (if any) is been declared conform Servlet 3.0 spec. I.e. the <web-app> root declaration must match the following:

<web-app
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">

In order to be able to import javax.servlet stuff, you need to integrate a fullworthy servletcontainer like Tomcat in Eclipse and then reference it in Targeted Runtimes of the project's properties. You can do the same for Google App Engine.

Once again, do not copy container-specific libraries into webapp project as others suggest. It would make your webapp unexecutabele on production containers of a different make/version. You'll get classpath-related errors/exceptions in all colors.

See also:


Unrelated to the concrete question: GAE does not support Servlet 3.0. Its underlying Jetty 7.x container supports max Servlet 2.5 only.

Community
  • 1
  • 1
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
17

Check that the version number of your servlet-api.jar is at least 3.0. There is a version number inside the jar in the META-INF/manifest.mf file:

Implementation-Version: 3.0.1

If it's less than 3.0 download the 3.0.1 from Maven Central: http://search.maven.org/#artifactdetails|javax.servlet|javax.servlet-api|3.0.1|jar

Former servlet specifications (2.5, 2.4 etc.) do not support annotations.

palacsint
  • 28,416
  • 10
  • 82
  • 109
13

If you're using Maven and don't want to link Tomcat in the Targeted Runtimes in Eclipse, you can simply add the dependency with scope provided in your pom.xml:

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>
jansohn
  • 2,246
  • 2
  • 28
  • 40
5

Go to

window->Preference->server->runtime environment

then choose your tomcat server. If the error is still there, then

right click project->properties>Targeted Runtimes

then check the server

Rey Libutan
  • 5,226
  • 9
  • 42
  • 73
Khaino
  • 3,774
  • 1
  • 27
  • 36
3

Simply add the below to your maven project pom.xml flie:

<dependencies>
          <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-web-api</artifactId>
            <version>6.0</version>
            <scope>provided</scope>
         </dependency>
  </dependencies>
toludav
  • 31
  • 2
2

I had the same issue, it turns that I had my project configured as many of you stated above, yet the problem persisted, so I went deeper and came across that I was using Apache Tomcat 6 as my Runtime Server, so the fix was simple, I just upgraded the project to use Apache Tomcat 7 and that's all, finally the IDE recognized javax.servlet.annotation.WebServlet annotation.

darkstar_mx
  • 456
  • 5
  • 8
2
import javax.servlet.annotation.*;

(no one has written this, but need to import this as WebInitparam is not recognized by the other packages)

Majid Golshadi
  • 2,686
  • 2
  • 20
  • 29
Sobbosachi
  • 21
  • 1
2

Copy servlet-api.jar from your tomcat server lib folder.

enter image description here

Paste it to WEB-INF > lib folder

enter image description here

Error was solved!!!

Zin Myo Swe
  • 778
  • 2
  • 10
  • 24
1

Add library 'Server Runtime' to your java build path, and it shall resolve the issue.

1

If you are using IBM RAD, then ensure the to remove any j2ee.jar in your projects build path -> libraries tab, and then click on "add external jar" and select the j2ee.jar that is shipped with RAD.

Piyush Chordia
  • 1,335
  • 1
  • 9
  • 7
0

I had the same issue using Spring, solved by adding Tomcat Server Runtime to build path.

-2

You need to add your servlet-api.jar to the build path of your project. Have a look here for how to do that.

Dirk
  • 1,893
  • 1
  • 19
  • 26
  • Should never be done, and it won't solve the problem anyways. – Achow Dec 15 '12 at 05:30
  • Downvoter, can u please explain what's wrong with my comment above? that u downvoted it? – Achow Dec 15 '12 at 05:51
  • No idea why this was downvoted and also what @anirban is "talking" about almost 1.5 years after this question is answered and accepted ... – Dirk Dec 17 '12 at 08:35
  • Even though the correct answer was accepted 1.5 years, this answer is conceptually incorrect and since its "easy", it might tempt developers to use it, but once they try this out,it wont work out.Its quite possible that the developer would NOT remove this dependency and would only look for correct answers.End result : the project gets doomed with 1 incorrect classpath dependency. – Achow Dec 17 '12 at 08:49