You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/07/02 05:32:15 UTC

[dubbo-website] branch master updated: Update service-discovery.md (#847)

This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a2ac4b  Update service-discovery.md (#847)
2a2ac4b is described below

commit 2a2ac4beaa444762da3eb81791f006d527510e94
Author: Shunyun Wong <zi...@gmail.com>
AuthorDate: Fri Jul 2 13:32:08 2021 +0800

    Update service-discovery.md (#847)
    
    即消费端自动发现服务之地列表的能力->即消费端自动发现服务地址列表的能力
---
 content/zh/docs/v3.0/concepts/service-discovery.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/zh/docs/v3.0/concepts/service-discovery.md b/content/zh/docs/v3.0/concepts/service-discovery.md
index c9b7346..9275d74 100644
--- a/content/zh/docs/v3.0/concepts/service-discovery.md
+++ b/content/zh/docs/v3.0/concepts/service-discovery.md
@@ -5,7 +5,7 @@ linkTitle: "服务发现"
 weight: 1
 description: "服务发现"
 ---
-服务发现,即消费端自动发现服务之地列表的能力,是微服务框架需要具备的关键能力,借助于自动化的服务发现,微服务之间可以在无需感知对端部署位置与 IP 地址的情况下实现通信。
+服务发现,即消费端自动发现服务地址列表的能力,是微服务框架需要具备的关键能力,借助于自动化的服务发现,微服务之间可以在无需感知对端部署位置与 IP 地址的情况下实现通信。
 
 实现服务发现的方式有很多种,Dubbo 提供的是一种 Client-Based 的服务发现机制,通常还需要部署额外的第三方注册中心组件来协调服务发现过程,如常用的 Nacos、Consul、Zookeeper 等,Dubbo 自身也提供了对多种注册中心组件的对接,用户可以灵活选择。