You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ea...@apache.org on 2022/04/22 02:07:03 UTC

[dubbo-website] branch master updated: fix #1060 (#1061)

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

earthchen 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 2ee3808b08 fix #1060 (#1061)
2ee3808b08 is described below

commit 2ee3808b088d2b8d1cd866084527a6a5e1fa1233
Author: Wang Chengming <63...@qq.com>
AuthorDate: Fri Apr 22 10:06:58 2022 +0800

    fix #1060 (#1061)
    
    Co-authored-by: 呈铭 <be...@antgroup.com>
---
 content/zh/docs/concepts/extensibility.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/zh/docs/concepts/extensibility.md b/content/zh/docs/concepts/extensibility.md
index 4b3f5f60a5..6f45cf3cc7 100644
--- a/content/zh/docs/concepts/extensibility.md
+++ b/content/zh/docs/concepts/extensibility.md
@@ -37,7 +37,7 @@ Dubbo 中的扩展能力是从 JDK 标准的 SPI 扩展点发现机制加强而
 
 用户能够基于 Dubbo 提供的扩展能力,很方便基于自身需求扩展其他协议、过滤器、路由等。下面介绍下 Dubbo 扩展能力的特性。
 
-* 按需加载。Dubbo 的扩展能力不会一次性实例化所有实现,而是用那个扩展类则实例化那个扩展类,减少资源浪费。
+* 按需加载。Dubbo 的扩展能力不会一次性实例化所有实现,而是用哪个扩展类则实例化哪个扩展类,减少资源浪费。
 * 增加扩展类的 IOC 能力。Dubbo 的扩展能力并不仅仅只是发现扩展服务实现类,而是在此基础上更进一步,如果该扩展类的属性依赖其他对象,则 Dubbo 会自动的完成该依赖对象的注入功能。
 * 增加扩展类的 AOP 能力。Dubbo 扩展能力会自动的发现扩展类的包装类,完成包装类的构造,增强扩展类的功能。
 * 具备动态选择扩展实现的能力。Dubbo 扩展会基于参数,在运行时动态选择对应的扩展类,提高了 Dubbo 的扩展能力。