You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by li...@apache.org on 2018/08/27 10:04:48 UTC

[incubator-servicecomb-docs] branch master updated: update java-chassis-reference/en_US/SUMMARY.md

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

liubao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 1ed6c8b  update java-chassis-reference/en_US/SUMMARY.md
1ed6c8b is described below

commit 1ed6c8bbfd33056b2a5570d2aab7c9aba35e4a0c
Author: DeanLee <li...@huawei.com>
AuthorDate: Mon Aug 27 16:34:00 2018 +0800

    update java-chassis-reference/en_US/SUMMARY.md
---
 java-chassis-reference/en_US/SUMMARY.md | 154 ++++++++++++++++----------------
 1 file changed, 77 insertions(+), 77 deletions(-)

diff --git a/java-chassis-reference/en_US/SUMMARY.md b/java-chassis-reference/en_US/SUMMARY.md
index 39e18b7..e5f7f4e 100644
--- a/java-chassis-reference/en_US/SUMMARY.md
+++ b/java-chassis-reference/en_US/SUMMARY.md
@@ -1,84 +1,84 @@
-# 目录
+# Table of Contents
 
-* [概述](introduction.md)
-* [入门](catalog/start.md)
-  * [术语表](start/terminology.md)
-  * [微服务系统架构](start/architecture.md)
-  * [安装本地开发环境](start/development-environment.md)
-  * [开发第一个微服务](start/first-sample.md)
-* [开发服务提供者](catalog/build-provider.md)
-  * [服务定义](build-provider/definition/service-definition.md)
-  * [定义服务契约](build-provider/define-contract.md)
-  * [使用隐式契约](build-provider/code-first.md)
-  * [使用Swagger注解](build-provider/swagger-annotation.md)
-  * [用SpringMVC开发微服务](build-provider/springmvc.md)
-  * [用JAX-RS开发微服务](build-provider/jaxrs.md)
-  * [用透明RPC开发微服务](build-provider/transparent-rpc.md)
-  * [接口定义和数据类型](build-provider/interface-constraints.md)
-  * [服务监听地址和发布地址](build-provider/listen-address-and-publish-address.md)
-  * [服务配置](build-provider/service-configuration.md)
-    * [负载均衡策略](build-provider/configuration/lb-strategy.md)
-    * [限流策略](build-provider/configuration/ratelimite-strategy.md)
-    * [降级策略](build-provider/configuration/downgrade-strategy.md)
-    * [参数效验](build-provider/configuration/parameter-validator.md)
-  * [通信协议](build-provider/protocol.md)
-    * [线程模型](build-provider/protocol/thread-model.md)
+* [Overview] (introduction.md)
+* [Getting Started] (catalog/start.md)
+  * [Glossary] (start/terminology.md)
+  * [Micro Service System Architecture] (start/architecture.md)
+  * [Install local development environment] (start/development-environment.md)
+  * [Develop the first microservice] (start/first-sample.md)
+* [Development Service Provider] (catalog/build-provider.md)
+  * [Service definition] (build-provider/definition/service-definition.md)
+  * [Define a service contract] (build-provider/define-contract.md)
+  * [Use implicit contract] (build-provider/code-first.md)
+  * [Use Swagger annotation] (build-provider/swagger-annotation.md)
+  * [Developing microservices with SpringMVC] (build-provider/springmvc.md)
+  * [Developing microservices with JAX-RS] (build-provider/jaxrs.md)
+  * [Developing microservices with transparent RPC] (build-provider/transparent-rpc.md)
+  * [Interface definition and data type] (build-provider/interface-constraints.md)
+  * [Service listening address and publishing address] (build-provider/listen-address-and-publish-address.md)
+  * [Service Configuration] (build-provider/service-configuration.md)
+    * [Load Balancing Policy] (build-provider/configuration/lb-strategy.md)
+    * [Current limiting policy] (build-provider/configuration/ratelimite-strategy.md)
+    * [Downgrade strategy] (build-provider/configuration/downgrade-strategy.md)
+    * [Parameter Validator] (build-provider/configuration/parameter-validator.md)
+  * [Communication Protocol] (build-provider/protocol.md)
+    * [Thread model] (build-provider/protocol/thread-model.md)
     * [REST over Servlet](build-provider/protocol/rest-over-servlet.md)
     * [REST over Vertx](build-provider/protocol/rest-over-vertx.md)
-    * [Highway RPC协议](build-provider/protocol/highway-rpc.md)
-    * [使用HTTP2通信](build-provider/protocol/http2.md)
-  * [程序启动逻辑](build-provider/bootup.md)
-  * [微服务实例之间的逻辑隔离关系](build-provider/definition/isolate-relationship.md)
-  * [Access Log配置](build-provider/access-log-configuration.md)
-* [开发服务消费者](catalog/build-consumer.md)
-  * [使用RestTemplate开发服务消费者](build-consumer/using-resttemplate.md)
-  * [使用AsynRestTemplate开发服务消费者](build-consumer/using-AsyncRestTemplate.md)
-  * [使用RPC方式开发服务消费者](build-consumer/develop-consumer-using-rpc.md)
-  * [使用服务契约](build-consumer/with-contract.md)
-  * [调用控制](build-consumer/invoke-control.md)
-    * [熔断策略](build-consumer/circuit-breaker.md)
-    * [限流策略](build-consumer/flow-control.md)
-    * [故障注入](build-consumer/fault-injection.md)
-* [通用开发](catalog/general-develop.md)
-  * [访问服务中心](general-development/visit-sc.md)
-  * [使用动态配置](general-development/config.md)
-  * [应用性能监控](general-development/metrics.md)
-  * [微服务调用链](general-development/microservice-invocation-chain.md)
-  * [自定义调用链打点](general-development/customized-tracing.md)
-  * [本地开发和测试](general-development/local-develop-test.md)
+    * [Highway RPC Protocol] (build-provider/protocol/highway-rpc.md)
+    * [Communicate using HTTP2] (build-provider/protocol/http2.md)
+  * [Boot-up Process] (build-provider/bootup.md)
+  * [Logical isolation between microservice instances] (build-provider/definition/isolate-relationship.md)
+  * [Access Log Configuration] (build-provider/access-log-configuration.md)
+* [Develop Service Consumer] (catalog/build-consumer.md)
+  * [Develop with Rest Template] (build-consumer/using-resttemplate.md)
+  * [Develop with AsynRestTemplate] (build-consumer/using-AsyncRestTemplate.md)
+  * [Develop with RPC] (build-consumer/develop-consumer-using-rpc.md)
+  * [Contract] (build-consumer/with-contract.md)
+  * [Invoke control] (build-consumer/invoke-control.md)
+    * [Circuit Breaker] (build-consumer/circuit-breaker.md)
+    * [Flow Control] (build-consumer/flow-control.md)
+    * [Fault Injection] (build-consumer/fault-injection.md)
+* [General Development] (catalog/general-develop.md)
+  * [Access Service Center] (general-development/visit-sc.md)
+  * [Use Dynamic Configuration] (general-development/config.md)
+  * [Metrics] (general-development/metrics.md)
+  * [Microservice invocation chain] (general-development/microservice-invocation-chain.md)
+  * [Customized-Tracing] (general-development/customized-tracing.md)
+  * [Local development and testing] (general-development/local-develop-test.md)
   * [Http Filter](general-development/http-filter.md)
-  * [文件上传](general-development/file-upload.md)
-  * [文件下载](general-development/file-download.md)
+  * [File Upload] (general-development/file-upload.md)
+  * [File Download] (general-development/file-download.md)
   * [Reactive](general-development/reactive.md)
-  * [DNS自定义配置](general-development/dnsconfig.md)
-  * [代理设置](general-development/dai-li-she-zhi.md)
-  * [框架上报版本号](general-development/report-framework-version.md)
-  * [跨应用调用](general-development/cross-app-invocation.md)
-  * [定制序列化和反序列化方法](general-development/secret-field.md)
-  * [使用Context传递控制消息](general-development/context.md)
-  * [返回值序列化扩展](general-development/produceprocess.md)
-  * [CORS机制](general-development/CORS.md)
-  * [获取熔断与实例隔离告警事件信息](general-development/AlarmEvent.md)
+  * [DNS Custom Configuration] (general-development/dnsconfig.md)
+  * [Proxy Settings] (general-development/dai-li-she-zhi.md)
+  * [Rport framework version] (general-development/report-framework-version.md)
+  * [Cross-application invocation] (general-development/cross-app-invocation.md)
+  * [Customized serialization and deserialization methods] (general-development/secret-field.md)
+  * [Use Context to pass control messages] (general-development/context.md)
+  * [return value serialization extension] (general-development/produceprocess.md)
+  * [CORS mechanism] (general-development/CORS.md)
+  * [Get fuse and instance isolation alarm event information] (general-development/AlarmEvent.md)
   * [Shutdown gracefully](general-development/shutdown.md)
   * [Handle exceptions](general-development/error-handling.md)
-* [服务能力开放](edge/open-service.md)
-  * [使用Edge Service做边缘服务](edge/by-servicecomb-sdk.md)
-  * [使用confd和Nginx做边缘服务](edge/nginx.md)
-  * [使用zuul做边缘服务](edge/zuul.md)
-* [服务打包和运行](catalog/service-package-run.md)
-  * [以standalone模式打包](packaging/standalone.md)
-  * [以WEB容器模式打包](packaging/web-container.md)
-* [微服务安全](catalog/security.md)
-  * [使用TLS通信](security/tls.md)
-  * [使用RSA认证](security/shi-yong-rsa-ren-zheng.md)
-* [在Spring Boot中使用java chassis](using-java-chassis-in-spring-boot.md)
-  * [提供的组件说明](using-java-chassis-in-spring-boot/components-for-spring-boot.md)
-  * [JAVA应用方式开发步骤](using-java-chassis-in-spring-boot/java-application.md)
-  * [Web开发方式开发步骤](using-java-chassis-in-spring-boot/web-application.md)
-  * [JAVA应用方式和Web开发方式的区别](using-java-chassis-in-spring-boot/diff-between-java-web.md)
-  * [Spring MVC模式的差异](using-java-chassis-in-spring-boot/diff-spring-mvc.md)
-* [处理链参考](references-handlers/intruduction.md)
-  * [负载均衡](references-handlers/loadbalance.md)
-  * [公钥认证](references-handlers/publickey.md)
-* [常见问题](question-and-answer/question_answer.md)
-  * [微服务接口兼容常见问题](question-and-answer/interface-compatibility.md)
+* [Service Capability Open] (edge/open-service.md)
+  * [Use Edge Service for Edge Services] (edge/by-servicecomb-sdk.md)
+  * [Use confd and Nginx for edge services] (edge/nginx.md)
+  * [Use zuul for edge services] (edge/zuul.md)
+* [Service Packing and Running] (catalog/service-package-run.md)
+  * [Packaged in standalone mode] (packaging/standalone.md)
+  * [Packaged in WEB container mode] (packaging/web-container.md)
+* [Micro Service Security] (catalog/security.md)
+  * [Communicate using TLS] (security/tls.md)
+  * [Use RSA certification] (security/shi-yong-rsa-ren-zheng.md)
+* [Use java chassis in Spring Boot] (using-java-chassis-in-spring-boot.md)
+  * [Provided component description] (using-java-chassis-in-spring-boot/components-for-spring-boot.md)
+  * [JAVA application development steps] (using-java-chassis-in-spring-boot/java-application.md)
+  * [Web development method development steps] (using-java-chassis-in-spring-boot/web-application.md)
+  * [The difference between JAVA application method and Web development method] (using-java-chassis-in-spring-boot/diff-between-java-web.md)
+  * [The difference in Spring MVC mode] (using-java-chassis-in-spring-boot/diff-spring-mvc.md)
+* [Handlers reference] (references-handlers/intruduction.md)
+  * [Load Balancing] (references-handlers/loadbalance.md)
+  * [public key authentication] (references-handlers/publickey.md)
+* [FAQ] (question-and-answer/question_answer.md)
+  * [Micro Service Interface Compatibility FAQ] (question-and-answer/interface-compatibility.md)
\ No newline at end of file