ray-note/极客时间学习/Java 实战训练营/分布式服务/Dubbo服务端与客户端通信原理.md

11 lines
444 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

## Dubbo网络通信组件整体架构
### Remoting
- Exchange 信息交换层,用于封装请求-响应模式
- Transport 网络传输层抽象Netty等框架作为统一的接口
- Serialize 序列化层,主要完成数据的序列化和反序列化
## Dubbo服务端通信机制解析
服务端通信的目的就是集成并绑定 `Netty` 服务从而启动服务监听,典型的多层架构
## Dubbo客户端通信机制解析