给出一个类名,如何确定要添加到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中的依赖项?