You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hy...@apache.org on 2022/05/19 08:37:39 UTC

[dubbo-website] branch master updated: update quick-start.md (#1078)

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

hyunkun 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 9b5f1e85c3 update quick-start.md (#1078)
9b5f1e85c3 is described below

commit 9b5f1e85c3d1832831cbca2d754d409fb209fc9d
Author: 小民同学 <42...@users.noreply.github.com>
AuthorDate: Thu May 19 16:37:35 2022 +0800

    update quick-start.md (#1078)
---
 content/zh/docs/quick-start.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/zh/docs/quick-start.md b/content/zh/docs/quick-start.md
index b03f11bd94..a572ce623d 100644
--- a/content/zh/docs/quick-start.md
+++ b/content/zh/docs/quick-start.md
@@ -45,7 +45,7 @@ message HelloReply {
  `SayHello (HelloRequest) returns (HelloReply) {}`,同时还定义了方法的入参结构体、出参结构体 `HelloRequest` 与 `HelloReply`。
  IDL 格式的服务依赖 Protobuf 编译器,用来生成可以被用户调用的客户端与服务端编程 API,Dubbo 在原生 Protobuf Compiler 的基础上提供了适配多种语言的特有插件,用于适配 Dubbo 框架特有的 API 与编程模型。
  
-> 使用 Dubbo3 IDL 定义的服务只允许一个入参与出参,这种形式的服务签名🈶两个优势,一是对多语言实现更友好,二是可以保证服务的向后兼容性,依赖于 Protobuf 序列化的兼容性,我们可以很容易的调整传输的数据结构如增、删字段等,完全不用担心接口的兼容性。
+> 使用 Dubbo3 IDL 定义的服务只允许一个入参与出参,这种形式的服务签名有两个优势,一是对多语言实现更友好,二是可以保证服务的向后兼容性,依赖于 Protobuf 序列化的兼容性,我们可以很容易的调整传输的数据结构如增、删字段等,完全不用担心接口的兼容性。
 
 ## 编译服务
 根据当前采用的语言,配置相应的 Protobuf 插件,编译后将生产语言相关的服务定义 stub。