二、Spring源码分析——基本注解

一、核心注解

注:@Indexed 需要引入依赖
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-indexer</artifactId>
    <optional>true</optional>
</dependency>

 

二、核心组件接口

基础接口

  • Resource+ResourceLoader
  • BeanFactory
  • BeanDefinition
  • BeanDefinitionReader
  • BeanDefinitionRegistry
  • ApplicationContext Aware

生命周期-后置处理器

  • BeanFactoryPostProcessor
  • InitializingBean
  • BeanPostProcessor

1、Bean生命周期流程

2、bean初始化流程

3、容器刷新流程

 

三、SpringBoot启动原理

1、Springdoot.rvn会创建一个ioc容器,AnnotationCorigServletWebServerApplicationContext

2、 ioc容器启动onRefresh会启动Tomcat

3、Tomcat启动会加截所有的Servlet

4、DispatcherServlet会加载九大组件的整个初始化流程

posted @ 2022-03-24 11:00  幻月hah  阅读(111)  评论(0编辑  收藏  举报