maven项目缺少servlet-api

时间:2014-04-10 16:47:25

标签: java spring maven servlets

首先,我想为可能重复的主题道歉但我无法找到解决问题的答案。在我创建一个新的Maven项目后,我有以下错误:

The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

我手动添加了jar servlet-api,但问题仍然存在。我怎么能解决这个问题?我使用的是Spring framework 3.2.0.RELEASE,JAVA 7

enter image description here

2 个答案:

答案 0 :(得分:4)

为您的POM添加依赖项!

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
        <scope>provided</scope>
    </dependency>

对于servlet API 2.5。

答案 1 :(得分:1)

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.0.1</version>
        <scope>provided</scope>
    </dependency>

清理项目并右键单击项目 - &gt; Maven - &gt;更新项目。