【笔记】第一阶段 模块四:SpringBoot原理以及源码剖析

1.源码剖析-依赖管理

(1)为什么导入dependency时不需要指定版本?
在Spring Boot入门程序中,项目pom.xml文件有两个核心依赖,分别是spring-boot-starter�parent和spring-boot-starter-web,关于这两个依赖的相关介绍具体如下:
1.1.spring-boot-starter-parent依赖
pom.xml文件中找到spring-boot-starter-parent依赖,示例代码如下:

 
 
org.springframework.boot 
spring-boot-starter-parent<11./artifactId>
 2.2.2.RELEASE   

将spring-boot-starter-parent依赖作为Spring Boot项目的统一父项目依赖管理,并将项目版本号统一为2.2.2.RELEASE,该版本号根据实际开发需求是可以修改的.
   看spring-boot-starter-parent底层源文件,发现spring-boot�starter-parent的底层有一个父依赖spring-boot-dependencies,核心代码具体如下:

 
org.springframework.boot 
spring-boot-dependencies
 2.2.2.RELEASE 
../../spring-boot-dependencies 

而看spring-boot-dependencies底层源文件,核心代码具体如下:


 5.15.11 
...
 8.2.0 
 8.0.18
 2.3.1
 2.2.2.RELEASE 
 2.0.4.RELEASE
 1.2.4.RELEASE
 5.2.1.RELEASE 
 Corn-RELEASE 
 3.0.8.RELEASE 
 3.28.0 
 ${jakarta-mail.version} 
 9.0.29 
 3.0.11.RELEASE 
 2.0.1
 ... 

该文件通过标签对一些常用技术框架的依赖文件进行了统一版本号管理,都有与Spring Boot 2.2.2版本相匹配的版本,这也是pom.xml引入依赖文件不需要标注依赖文件版本号的原因。
  如果pom.xml引入的依赖文件不是 spring-boot-starter-parent管理的,那么在
pom.xml引入依赖文件时,需要使用标签指定依赖文件的版本号。

(2) spring-boot-starter-parent父依赖启动器的主要作用是进行版本统一管理,那么项目运
行依赖的JAR包是从何而来的?
1.2 spring-boot-starter-web依赖
源码如下

 
   
    org.springframework.boot 
    spring-boot-starter 
    2.2.2.RELEASE 
    compile 
   
  
     org.springframework.boot
     spring-boot-starter-json 
    2.2.2.RELEASE
    compile 
   
   
    org.springframework.boot 
    spring-boot-starter-tomcat 
    2.2.2.RELEASE compile 
   
   
    org.springframework.boot 
    spring-boot-starter-validation 
    2.2.2.RELEASE 
    compile 
     
       
        tomcat-embed-el
         org.apache.tomcat.embed
       
    
   
   
    org.springframework
    spring-web 
    5.2.2.RELEASE 
    compile
    
   
    org.springframework
     spring-webmvc
     5.2.2.RELEASE 
    compile 
   

*spring-boot-starter-web依赖启动器的主要作用是提供Web开发场景所需的底层所有依赖;
*Spring Boot除了提供有上述介绍的Web依赖启动器外,还提供了其他许多开发场景的相关依赖

2. 自动配置(启动流程)

总结
因此springboot底层实现自动配置的步骤是:
(1). springboot应用启动;
  启动入口是@SpringBootApplication注解标注类中的main()方法, @SpringBootApplication能够扫描Spring组件并自动配置Spring Boot
(2). @SpringBootApplication起作用;
@SpringBootApplication注解是一个组合注解,前面 4 个是注解的元数据信息, 我们主要看后面 3 个注解:@SpringBootConfiguration、@EnableAutoConfiguration、@ComponentScan三个核心注解.
*@SpringBootConfiguration
作用与@Configuration注解相同,都是标识一个可以被组件扫描器扫描的配置类,只不过@SpringBootConfiguration是被Spring Boot进行了重新封装命名而已
(3). @EnableAutoConfiguration;
@EnableAutoConfiguration注解表示开启自动配置功能,该注解是Spring Boot框架最重要的注
解,也是实现自动化配置的注解。他是由@AutoConfigurationPackage注解和@Import({AutoConfigurationImportSelector.class})组合而成;
(4). @AutoConfigurationPackage:
这个组合注解主要是@Import(AutoConfigurationPackages.Registrar.class),它通过将Registrar类导入到容器中,而Registrar类作用是扫描主配置类同级目录以及子包,并将相应的组件导入到springboot创建管理
的容器中;
(5). @Import(AutoConfigurationImportSelector.class):它通过AutoConfigurationImportSelector类导入到容器中,AutoConfigurationImportSelector类作用是通过selectImports方法执行的过程中,会使用内部工具类SpringFactoriesLoader,查找classpath上所有jar包中METAINF/spring.factories进行加载,实现将配置类信息交给SpringFactory加载器进行一系列的容器创建过程

你可能感兴趣的:(【笔记】第一阶段 模块四:SpringBoot原理以及源码剖析)