springboot启动过程

    每个SpringBoot程序都有一个主入口,也就是main方法,main里面调用SpringApplication.run()启动整个spring-boot程序,该方法所在类需要使用@SpringBootApplication注解,以及@ImportResource注解(if need),@SpringBootApplication包括三个注解,功能如下:@EnableAutoConfiguration:SpringBoot根据应用所声明的依赖来对Spring框架进行自动配置

@SpringBootConfiguration(内部为@Configuration):被标注的类等于在spring的XML配置文件中(applicationContext.xml),装配所有bean事务,提供了一个spring的上下文环境

@ComponentScan:组件扫描,可自动发现和装配Bean,默认扫描SpringApplication的run方法里的Booter.class所在的包路径下文件,所以最好将该启动类放到根包路径下

 

SpringBoot启动类

首先进入run方法

springboot启动过程

 

run方法中去创建了一个SpringApplication实例,在该构造方法内,

springboot启动过程

 

 springboot启动过程

 

 然后执行run方法

springboot启动过程

 

上一篇:RocketMQ集群及搭建


下一篇:CF1368G Shifting Dominoes