2.Spring5源码分析-从架构设计到依赖图谱
2020-03-11 本文已影响0人
求索
软件系统的架构将系统描述为计算组件及组件之间的交互。
软件架构是从上而下设计的,先划分边界,然后设计组件,最后做具体业务;而代码编写是从下而上的,先有底层然后才有外部,才有边界。优秀的架构都从项目做出来的,分析源码需要了解产品架构,然后从架构定位分析具体功能实现。带着这么解决问题去分析源码,才能有效提升我们的技能。
定位
- 为解决企业应用开发的复杂性而创建的;
- J2EE应用程序开发提供集成的框架;
- 通过控制反转(IoC)和面向切面编程(AOP) 解耦业务,提升架构扩展性
逻辑视图
spring5x的架构逻辑视图如下:

将框架划分为四个层次
- Test:提供单元测试实现,单元测试为Core、Aop、应用层提供测试支撑;
- Core containner: 提供spring体系核心支撑
- 框架扩展支持: AOP、Aspects、Instrumentation、Messageing
- 应用层: 数据访问、web程序
core 核心部分
- spring-core:依赖注入IoC与DI的最基本实现
- spring-beans:Bean工厂与bean的装配
compile(project(":spring-core"))
- spring-expression:spring表达式语言
compile(project(":spring-core"))
- spring-context:spring的context上下文即IoC容器
compile(project(":spring-aop")) compile(project(":spring-beans")) compile(project(":spring-core")) compile(project(":spring-expression")) optional(project(":spring-instrument"))
- spring-context-indexer
testCompile(project(":spring-context"))
- spring-context-support: 其中support是spring额外支持包,比如邮件服务、视图解析等功能
compile(project(":spring-beans")) compile(project(":spring-context")) compile(project(":spring-core")) optional(project(":spring-jdbc")) // for Quartz support optional(project(":spring-tx"))
AOP 部分包含4个模块
- spring-aop:面向切面编程
compile(project(":spring-beans")) compile(project(":spring-core"))
- spring-aspects:集成AspectJ
aspects(project(":spring-orm")) optional(project(":spring-aop")) // for @Async support optional(project(":spring-beans")) // for @Configurable support optional(project(":spring-context")) // for @Enable* support optional(project(":spring-context-support")) // for JavaMail and JSR-107 support optional(project(":spring-orm")) // for JPA exception translation support optional(project(":spring-tx")) // for JPA, @Transactional support testCompile(project(":spring-core")) // for CodeStyleAspect testCompile(project(":spring-test"))
- spring-instrument:提供一些类级的工具支持ClassLoader级的实现,用于服务器,对应spring-instrument,同时提供针对tomcat的instrument实现jar包spring-instrument-tomcat
- spring-messaging:用于构建基于消息的应用程序
compile(project(":spring-beans")) compile(project(":spring-core")) optional(project(":spring-context")) optional(project(":spring-oxm"))
data access部分包含5个模块
- spring-jdbc:jdbc的支持
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-tx"))
optional(project(":spring-context")) // for JndiDataSourceLookup
```
- spring-tx:事务控制
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
optional(project(":spring-aop"))
optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
```
- spring-orm:对象关系映射,集成orm框架
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-jdbc"))
compile(project(":spring-tx"))
optional(project(":spring-aop"))
optional(project(":spring-context"))
optional(project(":spring-web"))
```
- spring-oxm:对象xml映射
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
testCompile(project(":spring-context"))
```
- spring-jms:java消息服务
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-messaging"))
compile(project(":spring-tx"))
optional(project(":spring-aop"))
optional(project(":spring-context"))
optional(project(":spring-oxm"))
```
web部分包含4个模块
- spring-web:基础web功能,如文件上传
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
optional(project(":spring-aop"))
optional(project(":spring-context"))
optional(project(":spring-oxm"))
```
- spring-webmvc:mvc实现
compile(project(":spring-aop")) compile(project(":spring-beans")) compile(project(":spring-context")) compile(project(":spring-core")) compile(project(":spring-expression")) compile(project(":spring-web")) optional(project(":spring-context-support")) // for FreeMarker support optional(project(":spring-oxm"))
- spring-webflux: 随Spring 5推出的响应式Web框架
compile(project(":spring-beans")) compile(project(":spring-core")) compile(project(":spring-web")) compile("io.projectreactor:reactor-core") optional(project(":spring-context")) optional(project(":spring-context-support")) // for FreeMarker support
- spring-websocket:为web应用提供的高效通信工具
compile(project(":spring-context")) compile(project(":spring-core")) compile(project(":spring-web")) optional(project(":spring-messaging")) optional(project(":spring-webmvc"))
其它模块
- spring-jcl :日志适配器
test只有一个模块
- spring-test:spring测试,提供junit与mock测试功能
compile(project(":spring-core")) optional(project(":spring-aop")) optional(project(":spring-beans")) optional(project(":spring-context")) optional(project(":spring-jdbc")) optional(project(":spring-orm")) optional(project(":spring-tx")) optional(project(":spring-web")) optional(project(":spring-webflux")) optional(project(":spring-webmvc")) optional(project(":spring-websocket")) testCompile(project(":spring-context-support")) testCompile(project(":spring-oxm"))
模块依赖思维导图
将项目包依赖分层,以spring-core 为1,直接依赖spring-core的为2,比如spring-beans;直接依赖spring-beans为3,一次类推,最大依赖层级有8个。分析项目源码可以参如下思维导图,比如分析 AOP底层原理,将AOP依赖的所有组件,按照依赖层次,逐级分析即可。
