在启动类中
1、@SpringBootApplication注解主要用来装配组件:自定义组件、starter组件(自动装配、自动配置)
2、SpringApplication.run()方法用来:
一、创建SpringApplication对象,在创建对象时做如下操作:
1、获取当前应用的启动类型
通过WebApplicationType.deduceFromClasspath()获取启动类型
注1:通过判断当前classpath是否加载servlet类,返回servlet web启动方式。
注2:webApplicationType(启动类型)三种类型:
- reactive:响应式启动(spring5新特性)
- none:即不嵌入web容器启动(springboot放在外部服务器运行 )
- servlet:基于web容器进行启动
2、获取初始化器:
通过getSpringFactoriesInstances(ApplicationContextInitializer.class)读取springboot下的META-INFO/spring.factories文件,获取对应的ApplicationContextInitializer装配到集合
3、获取监听器:
通过getSpringFactoriesInstances(ApplicationListener.class)读取springboot下的META-INFO/spring.factories文件,获取对应的ApplicationListener装配到集合
4、定位main方法
通过调用deduceMainApplicationClass()获取main方法所在的类并且返回
二、调用SpringApplication对象的run方法,实现启动,返回当前容器的上下文
1、StopWatch stopWatch = new StopWatch(),stopWatch.start():记录项目启动时间
2、调用getRunListeners(),读取META-INF/spring.factores,将SpringApplicationRunListeners类型存到集合listeners中
3、listeners.starting():循环调用starting方法
4、prepareEnvironment(listeners, applicationArguments):将配置文件读取到容器中
读取多数据源:classpath:/,classpath:/config/,file:./,file:./config/底下。其中classpath是读取编译后的,file是读取编译前的
支持yml,yaml,xml,properties
5、 Banner printedBanner = printBanner(environment):开始打印banner图,就是sprongboot启动最开头的图案
6、通过createApplicationContext()初始化AnnotationConfigServletWebServerApplicationContext对象
7、通过refreshContext(context),刷新上下文,让所有注解生效
在这个过程中:
a、创建tomcat:因为ServletWebServerFactoryAutoConfiguration注解生效了,而在这个注解中包含@import(EmbeddedTomcat.class),所以内嵌tomcat也生成了。其实这里的tomcat服务器是内部通过java代码实现的
b、加载springmvc
8、调用afterRefresh():这个是用户自己重写的方法
9、stopWatch.stop():结束计时
10、listeners.started(context):使用广播和回调机制告诉监听者springboot容器已经启动成功
11、listeners.running(context):使用广播和回调机制告诉监听者已经可以运行springboot了
12、return context: 返回上下文
详见:https://blog.csdn.net/weixin_40496191/article/details/109098491
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/153395.html