eclipse中maven-compiler-plugin的错误

时间:2018-01-26 08:16:26

标签: maven-compiler-plugin

enter image description here

在eclipse中获取maven-compiler-pluggin的错误 任何解决方案?

2 个答案:

答案 0 :(得分:1)

由于错误说您缺少一个类,因此您需要添加依赖项,因为服务器上将存在的依赖项将其标记为提供以指示maven在编译时使用它但不包括在生成的工件(由部署环境提供)。尝试在项目pom.xml中添加此依赖项:

<!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    <scope>provided</scope>
</dependency>

希望这会有所帮助。

答案 1 :(得分:0)

您必须在依赖项中包含servlet-api-xxx.jar

  • <强>的Maven

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