Spring Boot Application 两种启动方式分析

Spring Boot Application 两种启动方式分析

问题:

Spring boot一般我们都会有

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

但是如果我们使用war包的方式,这个去掉可以吗?

解决过程:

带着这个问题,看了看Spring Boot的文档

Convert an Existing Application to Spring Boot一节中,说到了如何把Spring Mvc转换成Spring Boot的应用。

其中有:

Once the war file is working, you can make it executable by adding a main method to your Application, as shown in the following example:

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

这段话也说明了如果使用war的包,是可以不加main函数的。

总结:

  1. 使用main的方式很直接,就是直接拿SpringApplication进行run。

  2. 使用war方式启动原理如下:

    这里涉及到两个东西:

    • SpringBootServletInitializer 这个类实现了WebApplicationInitializer,代替了传统的web.xml配置,进行配置。在WebApplicationInitializer的注释里说到:

      Implementations of this SPI will be detected automatically by SpringServletContainerInitializer, which itself is bootstrapped automatically by any Servlet 3.0 container

      说明只要继承了SpringBootServletInitializer会被当成servlet configuration扫描到并且执行onStartup方法。
      SpringBootServletInitializer进行Application的build和run.

    • @SpringApplication这个注解是一个启动配置的注解。相当于@Configuration, @EnableAutoConfiguration和@ComponentScan。

    原文作者:Spring Boot
    原文地址: https://blog.csdn.net/kang389110772/article/details/84036098
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞