如何将 servlet api 添加到我的 pom 中.xml

2022-09-01 02:35:51

如何将 servlets API 添加到项目的 pom 中.xml

mvnrepository.com 有很多servlet api和类似名称的项目,我不知道哪个是正确的。还是他们都还好?


答案 1

我相信大多数Web/应用程序服务器都捆绑了servlet api的版本,因此您不希望将api捆绑在.war文件中。您需要找出服务器中包含的版本,然后您可以使用

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>${servlet-api-version}</version>
    <scope>provided</scope>
</dependency>

将 servlet-api-version 替换为您的版本。您需要指定“提供”的作用域,以便 api.jar 不包含在 war 文件中。


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

推荐