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 8e5631e7c64 Add error code 1-1, 4-1. (#1415)
8e5631e7c64 is described below
commit 8e5631e7c648fbaaadef51435a76e2f5b64512f6
Author: Andy Cheung <[email protected]>
AuthorDate: Thu Aug 25 15:34:01 2022 +0800
Add error code 1-1, 4-1. (#1415)
* Add error code 4-1.
* Add error code 1-1.
* Optimize error code 1-1.
* Fix typo in code 1-1.
---
content/zh/docs3-v2/java-sdk/faq/1/1.md | 17 ++++++++++++++---
content/zh/docs3-v2/java-sdk/faq/4/1.md | 9 ++++++---
2 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/content/zh/docs3-v2/java-sdk/faq/1/1.md
b/content/zh/docs3-v2/java-sdk/faq/1/1.md
index 9800f2d5a58..daecf1bf873 100644
--- a/content/zh/docs3-v2/java-sdk/faq/1/1.md
+++ b/content/zh/docs3-v2/java-sdk/faq/1/1.md
@@ -1,8 +1,19 @@
---
type: docs
-title: "1-1 - 地址非法"
-linkTitle: "1-1 - 地址非法"
+title: "1-1 - 地址非法(服务版本或分组不匹配)"
+linkTitle: "1-1 - 地址非法(服务版本或分组不匹配)"
weight: 1
---
-## 地址找不到异常
\ No newline at end of file
+## 可能的原因
+1. Provider 端配置的 `service.group` 和 Consumer 端配置的 `reference.group`
(即服务分组的配置)不匹配。
+2. Provider 端配置的 `service.version` 和 Consumer 端配置的 `reference.version`
(即服务版本的配置)不匹配。
+
+## 排查和解决步骤
+1. 确保 Provider 和 Consumer 端的服务分组配置相对应。
+2. 确保 Provider 和 Consumer 端的服务版本配置相对应。
+
+## 另请参阅
+[配置项参考手册](../../../reference-manual/config/properties)
+
+<p style="margin-top: 3rem;"> </p>
\ No newline at end of file
diff --git a/content/zh/docs3-v2/java-sdk/faq/4/1.md
b/content/zh/docs3-v2/java-sdk/faq/4/1.md
index 34effa3e0f0..de4e31c936d 100644
--- a/content/zh/docs3-v2/java-sdk/faq/4/1.md
+++ b/content/zh/docs3-v2/java-sdk/faq/4/1.md
@@ -6,13 +6,16 @@ weight: 1
---
## 可能的原因
-
-
-
+这种情况可能出现在自定义 Protocol 的场景下。Dubbo 的 SPI 机制找不到 URL 中所指定的 Protocol。
## 排查和解决步骤
+1. 确定 Consumer 中有服务端所用到的 Protocol 的依赖。
+2. 确定 Protocol 的依赖包的 SPI 配置文件的名字没有写错。
+## 另请参阅
+[Dubbo SPI
概述](https://dubbo.apache.org/zh/docs3-v2/java-sdk/reference-manual/spi/overview/)
+[协议扩展说明](https://dubbo.apache.org/zh/docs3-v2/java-sdk/reference-manual/spi/description/protocol/)
<p style="margin-top: 3rem;"> </p>
\ No newline at end of file