This is an automated email from the ASF dual-hosted git repository.
menghaoran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 9f25b77d2bb Optimize shadow docs of dev manual (#20125)
9f25b77d2bb is described below
commit 9f25b77d2bbc3fd78473be998b11625309792f73
Author: gin <[email protected]>
AuthorDate: Fri Aug 12 20:10:27 2022 +0800
Optimize shadow docs of dev manual (#20125)
---
docs/document/content/dev-manual/shadow.cn.md | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/docs/document/content/dev-manual/shadow.cn.md
b/docs/document/content/dev-manual/shadow.cn.md
index 7a5c0a0db41..e2afc2a80aa 100644
--- a/docs/document/content/dev-manual/shadow.cn.md
+++ b/docs/document/content/dev-manual/shadow.cn.md
@@ -7,6 +7,10 @@ chapter = true
## SPI 接口
+### 完全限定的类名
+
+[`org.apache.shardingsphere.shadow.spi.ShadowAlgorithm`](https://github.com/apache/shardingsphere/blob/master/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-api/src/main/java/org/apache/shardingsphere/shadow/spi/ShadowAlgorithm.java)
+
| *SPI 名称* | *详细说明* |
|---------------- |------------ |
| ShadowAlgorithm | 影子库路由算法 |
@@ -15,8 +19,8 @@ chapter = true
### ShadowAlgorithm
-| *已知实现类* | *详细说明* |
-|-------------------------------- |----------------------- |
-| ColumnValueMatchShadowAlgorithm | 基于字段值匹配影子算法 |
-| ColumnRegexMatchShadowAlgorithm | 基于字段值正则匹配影子算法 |
-| SimpleHintShadowAlgorithm | 基于 Hint 简单匹配影子算法 |
+| *已知实现类* | *详细说明* | *完全限定的类名* |
+|-------------------------------- |----------------------- | ------------- |
+| ColumnValueMatchShadowAlgorithm | 基于字段值匹配影子算法 |
[`org.apache.shardingsphere.shadow.algorithm.shadow.column.ColumnValueMatchShadowAlgorithm`](https://github.com/apache/shardingsphere/blob/master/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-core/src/main/java/org/apache/shardingsphere/shadow/algorithm/shadow/column/ColumnValueMatchShadowAlgorithm.java)
|
+| ColumnRegexMatchShadowAlgorithm | 基于字段值正则匹配影子算法 |
[`org.apache.shardingsphere.shadow.algorithm.shadow.column.ColumnRegexMatchShadowAlgorithm`](https://github.com/apache/shardingsphere/blob/master/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-core/src/main/java/org/apache/shardingsphere/shadow/algorithm/shadow/column/ColumnRegexMatchShadowAlgorithm.java)
|
+| SimpleHintShadowAlgorithm | 基于 Hint 简单匹配影子算法 |
[`org.apache.shardingsphere.shadow.algorithm.shadow.hint.SimpleHintShadowAlgorithm`](https://github.com/apache/shardingsphere/blob/master/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-core/src/main/java/org/apache/shardingsphere/shadow/algorithm/shadow/hint/SimpleHintShadowAlgorithm.java)
|