spring-boot-starter-parent在pom文件中究竟做了什么?

2022-09-03 02:37:38

我正在开发一个项目,它不是Spring boot,而是Spring mvc。我的意思是,例如,在我的项目中没有这样的类:

@SpringBootApplication
public class Application extends SpringBootServletInitializer {

    public static void main(String[] args) {           
      SpringApplication.run(Application.class, args);
    }

我有这三个类用于spring mvc的配置文件:

@Import(WebSocketConfig.class)
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "......")

public class MainConfiguration extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/Content/**")
                .addResourceLocations("/Content/");
        registry.addResourceHandler("/Scripts/**")
                .addResourceLocations("/Scripts/");


    }

    @Bean
    public InternalResourceViewResolver viewResolver() {
        InternalResourceViewResolver viewResolver
                = new InternalResourceViewResolver();
        viewResolver.setPrefix("/");
        viewResolver.setSuffix(".jsp");
        return viewResolver;
    }

}

第二:

public class MainInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
    public static HashMap<String, String> response_code = new HashMap<String, String>();


    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class[] { MainConfiguration.class,
        WebSocketConfig.class};
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return null;
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] { "/" };
    }

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        super.onStartup(servletContext);
        Security.addProvider(new BouncyCastleProvider());
        servletContext.addListener(new MainContextListener());
        System.out.println("MainInitializer.onStartup()");
}}

第三

public class MainContextListener implements ServletContextListener {

    public void contextInitialized(ServletContextEvent servletContextEvent) {
        System.out.println("Context Initialized");
        Security.addProvider(new BouncyCastleProvider());
    }

    public void contextDestroyed(ServletContextEvent servletContextEvent) {
        System.out.println("Shutting down!");
    }
}

有一个控制器和jsp文件,我已经将其配置为在tomcat Web服务器上运行,对我来说很奇怪的是,当我将这段代码片段添加到我的pom,index时.jsp将完全出现在浏览器中,但是当我删除它时,它会为我的控制器提供404找不到的url。为什么即使我的项目不是弹簧靴项目也需要弹簧靴启动器父级?我认为下面的代码与弹簧靴有关,因为我的项目不是弹簧靴而是弹簧mvc,所以不需要它。但是如果没有在pom中添加此代码,它就有问题:

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.1.RELEASE</version>
    </parent>

答案 1

Spring Boot 提供了许多“启动器”,允许您将 jar 添加到类路径中。例如,弹簧-启动器-安全,弹簧-启动器-Web 等。“spring-boot-starter-parent”是一个特殊的启动器,它提供了有用的Maven默认值,即它会自动添加所有必需的jar和其他内容。它还提供了一个依赖项管理部分,以便您可以省略在 pom.xml 中使用的依赖项的版本标记。例如,假设您要使用Spring boot创建Web应用程序,因此您需要添加以下内容。

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

现在请注意,此处省略了标记。因此,最终“spring-boot-starter-parent”默认添加了很多东西,所以我们不必担心这些事情。


答案 2

编辑:另请参阅官方文档

https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started.first-application.dependencies

它为 s 的常见配置提供了空间,例如CHILD POM

Dependencies & Properties

对于 这里 是 父 POM 配置 它是e.g.1.4.2.RELEASEspring-boot-dependenciesspring-boot-starter-parent

<properties>
    <activemq.version>5.13.4</activemq.version>
    <antlr2.version>2.7.7</antlr2.version>
    <appengine.version>1.9.44</appengine.version>
    <artemis.version>1.3.0</artemis.version>
    <aspectj.version>1.8.9</aspectj.version>
    <assertj.version>2.5.0</assertj.version>
    <atomikos.version>3.9.3</atomikos.version>
    <bitronix.version>2.1.4</bitronix.version>
    <caffeine.version>2.3.4</caffeine.version>

的常见属性child POM

<dependencyManagement>
    <dependencies>
        <!-- Spring Boot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot</artifactId>
            <version>1.4.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot</artifactId>
            <type>test-jar</type>
            <version>1.4.2.RELEASE</version>
        </dependency>
        <dependency>

子级的常见依赖项


推荐