gpt4 book ai didi

java - 无法在 Netbeans 的 Maven 项目中导入任何 javax-servlet

转载 作者:行者123 更新时间:2023-11-29 04:16:36 24 4
gpt4 key购买 nike

我正在制作一个 Maven 项目,这是我第一次使用 Maven。我正在使用 Netbeans 和 Tomcat 服务器,但无法导入任何 javax.servlet,例如导入 javax.servlet.RequestDispatcher;等等。它看起来像这样:

enter image description here

有信息:javax.servlet 不存在,Netbeans 提出的解决方案例如:“在 Maven 存储库中搜索 javax.servlet.RequestDispatcher 的依赖项。当我单击它时,会出现一个没有任何内容的弹出窗口去做: enter image description here

我的 pom.xml 文件位于 C://pathToNetbeansProjects/myProject/pom.xml我为 javax-servlet 添加了一个依赖项,现在我的 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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>org.glassfish.jersey.archetypes</groupId>
<artifactId>ParkingSystem</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>ParkingSystem</name>

<build>
<finalName>ParkingSystem</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<!-- uncomment this to get JSON support -->
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-binding</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>

<properties>
<jersey.version>2.27</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

如果我的 pom.xml 做错了什么,或者我可能需要在 Netbeans 中做一些事情才能让它工作,我没有更多的想法。但我真的不知道是什么。

最佳答案

问题 99% 是由 Maven 对该库进行的不同导入引起的。Maven 按照分层方式导入您的库,因此您可能导入了一些包含 javax.servlet 的库,但它不是您需要的版本。

首先,我建议您通过查看 Maven 层次结构来寻找解决冲突的方法,您可以使用控制台命令 mvn dependency:tree -Dverbose(查看 here举个例子)。

然后您可以通过库中的特定 maven 命令省略不需要的库:

<dependency>
....

<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>

</dependency>

这是一个有助于理解“为什么”会发生这种情况的解释,因此您可以理解它。

顺便说一句,您可以首先尝试的快速修复方法是移动您想要的导入javax.servlet 作为 pom 的第一个元素。

关于java - 无法在 Netbeans 的 Maven 项目中导入任何 javax-servlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52001278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com