且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在eclipse中将项目转换为maven项目后,不会导入servlet包

更新时间:2023-11-17 23:26:16

您可以通过以下方式将依赖项添加到部署中:


  1. 右键单击项目> Project Pro
  2. 单击部署程序集

  3. 单击添加

  4. 单击Java构建路径条目

  5. 单击Maven依赖关系



您可以通过以下方式将依赖项添加到构建路径:


  1. 右键单击项目>项目属性

  2. 单击Java构建路径

  3. 单击库

  4. 单击添加库

  5. 选择Maven管理依赖关系



您不应该导入servlet依赖项通过Maven,你应该指向你的服务器运行时。您可以通过以下方式进行配置:


  1. 右键单击项目>项目属性

  2. 单击Java构建路径

  3. 单击库

  4. 单击添加库

  5. 选择服务器运行时

  6. 选择您的服务器。


I have a dynamic web application that I've converted to a maven project in Spring Toolsuite (Eclipse, basically.) The project now has a pom.xml file, but the Java Build Path no longer has the jars I used to use because maven is supposed to handle the dependencies. I put the dependencies in the pom like this:

<dependencies>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>(,1.0]</version>
    </dependency>
  </dependencies>

and I included a repository like so:

<repositories>
        <repository>
          <id>maven2-repository.dev.java.net</id>
          <name>Java.net Repository for Maven</name>
          <url>http://download.java.net/maven/2/</url>
          <layout>default</layout>
        </repository>
  </repositories>

Still, the dependency isn't resolved and my servlets aren't working. Why isn't my converted Maven project making dependency management any easier? Why aren't the servlet imports working, more specifically?

You can add the dependencies to the deployment by:

  1. Right click the project > Project Properties
  2. Click Deployment Assembly
  3. Click Add
  4. Click Java Build Path Entries
  5. Click Maven Dependencies

You can add the dependencies to the build path by:

  1. Right click the project > Project Properties
  2. Click Java Build Path
  3. Click Libraries
  4. Click Add Libraries
  5. Select Maven Managed Dependencies

You shouldn't be importing the servlet dependencies via Maven though, you should be pointing at your servers runtime. You can configure this by:

  1. Right click the project > Project Properties
  2. Click Java Build Path
  3. Click Libraries
  4. Click Add Libraries
  5. Select Server Runtime
  6. Select your server.