Java技能图谱我的技术体系

2.Spring5源码分析-从架构设计到依赖图谱

2020-03-11  本文已影响0人  求索

软件系统的架构将系统描述为计算组件及组件之间的交互。

软件架构是从上而下设计的,先划分边界,然后设计组件,最后做具体业务;而代码编写是从下而上的,先有底层然后才有外部,才有边界。优秀的架构都从项目做出来的,分析源码需要了解产品架构,然后从架构定位分析具体功能实现。带着这么解决问题去分析源码,才能有效提升我们的技能。

定位

逻辑视图

spring5x的架构逻辑视图如下:


2.架构设计图.png

将框架划分为四个层次

core 核心部分

  1. spring-core:依赖注入IoC与DI的最基本实现
  2. spring-beans:Bean工厂与bean的装配
    compile(project(":spring-core"))
    
  3. spring-expression:spring表达式语言
    compile(project(":spring-core"))
    
  4. 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"))
    
  5. spring-context-indexer
    testCompile(project(":spring-context"))
    
  6. 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个模块

  1. spring-aop:面向切面编程
    compile(project(":spring-beans"))
    compile(project(":spring-core"))
    
  2. 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"))
    
  3. spring-instrument:提供一些类级的工具支持ClassLoader级的实现,用于服务器,对应spring-instrument,同时提供针对tomcat的instrument实现jar包spring-instrument-tomcat
  4. spring-messaging:用于构建基于消息的应用程序
    compile(project(":spring-beans"))
    compile(project(":spring-core"))
    optional(project(":spring-context"))
    optional(project(":spring-oxm"))
    

data access部分包含5个模块

  1. spring-jdbc:jdbc的支持
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-tx"))
optional(project(":spring-context"))  // for JndiDataSourceLookup
```
  1. spring-tx:事务控制
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
optional(project(":spring-aop"))
optional(project(":spring-context"))  // for JCA, @EnableTransactionManagement
```
  1. 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"))
```
  1. spring-oxm:对象xml映射
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
testCompile(project(":spring-context"))
```
  1. 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个模块

  1. spring-web:基础web功能,如文件上传
```
compile(project(":spring-beans"))
compile(project(":spring-core"))
optional(project(":spring-aop"))
optional(project(":spring-context"))
optional(project(":spring-oxm"))
```
  1. 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"))
    
  2. 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
    
  3. spring-websocket:为web应用提供的高效通信工具
    compile(project(":spring-context"))
    compile(project(":spring-core"))
    compile(project(":spring-web"))
    optional(project(":spring-messaging"))
    optional(project(":spring-webmvc"))
    

其它模块

test只有一个模块

模块依赖思维导图

将项目包依赖分层,以spring-core 为1,直接依赖spring-core的为2,比如spring-beans;直接依赖spring-beans为3,一次类推,最大依赖层级有8个。分析项目源码可以参如下思维导图,比如分析 AOP底层原理,将AOP依赖的所有组件,按照依赖层次,逐级分析即可。

依赖图展开版本.png
上一篇 下一篇

猜你喜欢

热点阅读