如何找到我的Maven项目的<dependency>?

时间:2018-11-13 02:24:09

标签: java maven

给出一个类名,如何确定要添加到pom.xml文件中的依赖项?

例如,我需要SpringBootServletInitializer类可用于我的Maven项目。我遇到的结果之一建议添加以下内容:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.1.0.RELEASE</version>
</dependency>

但是下次我运行“ mvn软件包”时,再次出现错误:

[ERROR] /C:/path/to/gs-spring-boot/complete/src/main/java/hello/Application.java:[12,34] cannot find symbol
[ERROR]   symbol: class SpringBootServletInitializer

因此它不在其中,或者我的IDE在其中找不到它。给定类名,如何确定需要添加到pom.xml中的依赖项?

0 个答案:

没有答案