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函数的。
总结:
使用main的方式很直接,就是直接拿SpringApplication进行run。
使用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。