Spring整体架构与模块划分 核心容器(Core Container) spring-core 基础工具类:如资源加载(Resource接口)、反射工具(ReflectionUtils)、类型转换(ConversionService)。 核心接口:BeanFactory(IoC容器的基本定义)。 spring-beans Bean的定义与依赖管理:BeanDefinition(描述Bean的元数据)、BeanWrapper(Bean属性操作)。 Bean的实例化与生命周期管理:AbstractAutowireCapableBeanFactory(Bean创建的核心类)。 spr...