我真的是Maven的新手,只是将我的App引擎项目转换为Maven项目。
为了消除错误,我在pom.xml
文件中添加了依赖项。
但是现在我进入了代码
HttpServletRequest类型的getPart(String)方法未定义
因此,在对Stack Overflow进行了一些研究之后,看来我需要有一个servlet-api
的更新包,以使其正常工作。
很明显,我可能与Maven依赖项中的旧版本存在冲突,但是我从未在pom.xml
中添加它,现在我受困于此jar,不知道为什么要导入它以及如何导入删除它。
这是我的pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my-project</groupId>
<artifactId>my-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<webResources>
<resource>
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.3.1</version>
<configuration>
<deploy.promote>true</deploy.promote>
<deploy.stopPreviousVersion>true</deploy.stopPreviousVersion>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>com.mailjet</groupId>
<artifactId>mailjet-client</artifactId>
<version>4.2.1</version>
</dependency>
<dependency>
<groupId>com.google.appengine.tools</groupId>
<artifactId>appengine-gcs-client</artifactId>
<version>0.8</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>
这是我在构建路径中进入Maven dependencies
的图像。
我的猜测是,该错误来自具有2.5版的servlet-api。
因此,非常感谢您的帮助,我看到了有关exclusion
的一些信息
标记,但甚至不知道将其放置在哪里,因为pom.xml
中的内容似乎并不要求该jar。
答案 0 :(得分:1)
最好在Eclipse中打开pom.xml文件,然后切换到“依赖层次”标签。查找不需要的库(在过滤器中键入“ serlvet”),然后通过上下文菜单在其上添加排除项。这将修改您的pom.xml文件。