ray-note/极客时间学习/Java 实战训练营/分布式服务/Dubbo提供的各种服务引用机制.md

16 lines
439 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服务引用流程
### 本地接口 -> 远程调用
1. 导入服务提供者接口API和服务信息
2. 生成远程服务的本地动态代理对象 (这里的代理细节是什么)
5. 本地API调用转换成远程服务调用返回调用结果
### Dubbo远程调用全流程
### 服务调用核心技术
- 回声测试
- 异步调用 -- 基于NIO
- 泛化调用(任意的制定方法,参数;不推荐)
###