This is an automated email from the ASF dual-hosted git repository.
liujun 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 e92f7f32ed Fix wrong link (#1237)
e92f7f32ed is described below
commit e92f7f32ed8d824cf0b60491f035ffad94281c22
Author: ken.lj <[email protected]>
AuthorDate: Fri Jul 15 13:13:25 2022 +0800
Fix wrong link (#1237)
---
content/zh/docs/quick-start.md | 2 +-
.../java-sdk/reference-manual/registry/multiple-registry/_index.md | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/zh/docs/quick-start.md b/content/zh/docs/quick-start.md
index b8f31ffd48..eab4ccc1d1 100644
--- a/content/zh/docs/quick-start.md
+++ b/content/zh/docs/quick-start.md
@@ -7,7 +7,7 @@ weight: 3
description: "示例演示了如何使用 Dubbo Spring Boot Starter 方式快速开发 Dubbo 应用。"
---
-> Dubbo 还提供了包括XML、API
等多种启动与接入方式,更多开发方式和配置细节可参见[配置手册](./references/configuration/)。
+> Dubbo 还提供了包括XML、API
等多种启动与接入方式,更多开发方式和配置细节可参见[配置手册](../references/configuration/)。
## 下载示例代码
完整示例代码在
[dubbo-samples](https://github.com/apache/dubbo-samples/dubbo-samples-spring-boot)
中
diff --git
a/content/zh/docs3-building/java-sdk/reference-manual/registry/multiple-registry/_index.md
b/content/zh/docs3-building/java-sdk/reference-manual/registry/multiple-registry/_index.md
index c51092b26e..c5738704cd 100644
---
a/content/zh/docs3-building/java-sdk/reference-manual/registry/multiple-registry/_index.md
+++
b/content/zh/docs3-building/java-sdk/reference-manual/registry/multiple-registry/_index.md
@@ -51,7 +51,7 @@ dubbo
`default` 用来设置全局默认注册中心,默认值为 `true` 即被视作全局注册中心。未指定注册中心 id 的服务将自动注册或订阅全局默认注册中心。
-### 1.2 显示关联服务与注册中心
+### 1.3 显示关联服务与注册中心
通过在 Dubbo 服务定义组件上增加 registry 配置,将服务与注册中心关联起来。
@@ -115,7 +115,7 @@ RpcContext.getContext().setAttachment("registry_zone",
"qingdao");
根据 Invocation 中带的流量参数或者在当前节点通过 context 上下文设置的参数,流量会被精确的引导到对应的集群。
-### 2.1 多注册中心地址聚合
+### 2.2 多注册中心地址聚合
```xml
<dubbo:registry
address="multiple://127.0.0.1:2181?separator=;&reference-registry=zookeeper://address11?backup=address12,address13;zookeeper://address21?backup=address22,address23"
/>
```
@@ -163,7 +163,7 @@ CRM 有些服务是专门为国际站设计的,有些服务是专门为中文
<dubbo:service interface="com.alibaba.hello.api.DemoService" version="1.0.0"
ref="demoService" registry="intlRegistry" />
```
-### 3.3 场景三:
+### 3.3 场景三
CRM 需同时调用中文站和国际站的 PC2 服务,PC2 在中文站和国际站均有部署,接口及版本号都一样,但连的数据库不一样。