其他分享
首页 > 其他分享> > springboot启动过程

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方法

 

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

 

 

 

 然后执行run方法

 

标签:run,SpringBoot,启动,spring,SpringApplication,方法,注解,过程,springboot
来源: https://www.cnblogs.com/wangjing1997/p/15142533.html