From c31de82a4b421967376292a7b889c1fb3c6360d1 Mon Sep 17 00:00:00 2001 From: oopsguy <474608426@qq.com> Date: Sun, 3 Sep 2017 02:06:02 +0800 Subject: [PATCH] fixed image links --- 3-inter-process-communication.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/3-inter-process-communication.md b/3-inter-process-communication.md index 08a0240..c1528c7 100644 --- a/3-inter-process-communication.md +++ b/3-inter-process-communication.md @@ -98,7 +98,7 @@ 图 3-4 展示了打车应用程序如何使用发布订阅通道。 -![使用了发布-订阅通道的打车应用]() +![使用了发布-订阅通道的打车应用](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/resources/3-4.png) Trip Management 服务通过向发布订阅通道写入 Trip Created 消息来通知已订阅的服务,如 Dispatcher。 Dispatcher 找到可用的司机并通过向发布订阅通道写入 Driver Proposed 消息来通知其他服务。 @@ -140,6 +140,6 @@ REST 中的一个关键概念是资源,它通常表示业务对象,如客户 图 3-5 显示了打车应用程序可能使用 REST 的方式之一。 -![使用了 RESTful 交互的打车应用]() +![使用了 RESTful 交互的打车应用](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/resources/3-5.png) **待续……** diff --git a/README.md b/README.md index a66b11a..39169fd 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ - [3.3、定义 API](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#33定义api) - [3.4、演化 API](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#34演化api) - [3.5、处理局部故障](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#35处理局部故障) -- [3.6、IPC 技术](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#36ipc技术) -- [3.7、异步、基于消息的通信](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#37异步、基于消息的通信) +- [3.6、IPC 技术](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#36ipc-技术) +- [3.7、异步、基于消息的通信](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#37异步基于消息的通信) - [3.8、同步的请求/响应 IPC](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#38同步的请求响应ipc) - [3.8.1、REST](https://github.com/oopsguy/microservices-from-design-to-deployment-chinese/blob/master/3-inter-process-communication.md#381rest) - [3.8.2、Thrift]