下载代码
git clone https://github.com/spring-projects/spring-framework.git
修改配置
- 注释掉
settings.gradle
中的include "spring-aspects"
...大约 1 分钟
git clone https://github.com/spring-projects/spring-framework.git
settings.gradle
中的include "spring-aspects"
spring 的初始化本质为 ApplicationContext 对象的构建,这里通过注解进行构建 AnnotationConfigApplicationContext 。构建的主要大的步骤为:
整个过程极为重要的为刷新,而且后续也都在讲述 刷新的步骤。
以下是 ApplicationContext 对象构建的流程图: