Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我检查了具有以下目录结构的现有 Maven 项目:
我正在尝试在以下位置创建一个 servlet 类ConfigFileInput.java:
ConfigFileInput.java
如您所见,它无法识别 servlet 导入。
但是,当我在现有的 Maven 项目之外创建一个 Web 项目时,它工作得很好。我不确定我是否做对了,这很令人困惑。我将不胜感激一些帮助/建议。
您需要servlet-api在您的pom.xml
servlet-api
pom.xml
<project> . . <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> </dependencies> . . </project>
使用您的项目使用的正确版本