From b6f92a2d00f280a456515382f33abbdd0b89fe33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=BF=B5=E5=90=9B=20Sun=20Nianjun?= Date: Fri, 29 May 2020 11:33:44 +0800 Subject: [PATCH] Document: update the Chinese version document for example (#5836) * Refactor: update the example document (5828) * Fix: fix the broken link and update to Chinese version (5830) (#5833) * Document: update the Chinese version document for example * Document: remote the original document --- examples/README_ZH.md | 55 +++++++++++-------------------------------- 1 file changed, 14 insertions(+), 41 deletions(-) diff --git a/examples/README_ZH.md b/examples/README_ZH.md index 09e1d3b984..17fd3f8af2 100644 --- a/examples/README_ZH.md +++ b/examples/README_ZH.md @@ -78,44 +78,17 @@ shardingsphere-example   └── manual_schema.sql ``` -### 分片数据的最佳实践 - -* 分片数据库 -* 分片表 -* 分片数据库和表 -* 主从 -* 分片和主从 - -您可以从[shardingsphere-example](shardingsphere-jdbc-example/sharding-example)中获取更多详细信息 - -### 分片与编排的最佳实践 - -* 使用本地配置文件和zookeeper/etcd配置分片 -* 使用注册中心(zookeeper/etcd)的配置进行分片 - -您可以从业务[orchestration-example](shardingsphere-jdbc-example/orchestration-example)中获取更多细节 - -### 分片+分布式事务的最佳实践 - -* 2pc-xa事务 -* base-seata事务 - -您可以从[transaction-example](shardingsphere-jdbc-example/transaction-example)中获取更多详细信息 - -### 提示路由的最佳实践 - -您可以从[hint-example](shardingsphere-jdbc-example/other-feature-example/hint-example)中获取更多细节 - -### 数据加密的最佳实践 - -您可以从[encrypt-example](shardingsphere-jdbc-example/other-feature-example/encrypt-example)中获取更多详细信息 - -### APM集成的最佳实践 - -我们将在最近添加APM集成示例。 - -### 分片代理的最佳实践 - -我们希望最近添加一个docker基础示例。 - -### [如何使用docker配置ShardingSphere-JDBC和ShardingSphere-Proxy](./docker/docker-compose.md) (可选) +## 用例列表 + +| 例子 | 描述 | +|---------|-------------| +| [分片](shardingsphere-jdbc-example/sharding-example) | 演示了如何通过 ShardingSphere-JDBC 进行分库、分表、主从等 | +| [springboot jpa](shardingsphere-jdbc-example/sharding-example/sharding-spring-boot-jpa-example) | 演示了如何通过 SpringBoot JPA 对接 ShardingSphere | +| [springboot mybatis](shardingsphere-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example) | 演示了如何通过 SpringBoot Mybatis 对接 ShardingSphere | +| [orchestration](shardingsphere-jdbc-example/orchestration-example) | 演示了如何在 ShardingSphere 中使用 orchestration | +| [事务](shardingsphere-jdbc-example/transaction-example) | 演示了如何在 ShardingSphere 中使用事务 | +| [hint](shardingsphere-jdbc-example/other-feature-example/hint-example) | 演示了如何在 ShardingSphere 中使用 hint | +| [脱敏](shardingsphere-jdbc-example/other-feature-example/encrypt-example) | 演示了如何在 ShardingSphere 中使用脱敏 | +| APM监控(Pending) | 演示了如何在 ShardingSphere 中使用 APM 监控 | +| proxy(Pending) | 演示了如何使用 sharding proxy | +| [docker](./docker/docker-compose.md) | 演示了如何通过 docker 创建 ShardingSphere 所依赖的环境 | -- GitLab