This is an automated email from the ASF dual-hosted git repository.
albumenj 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 ddcfb66 fix words, Serverlet to Servlet and 时间 to 事件 (#899)
ddcfb66 is described below
commit ddcfb667d56efbc9ee4ef3b37fb0995548466cf3
Author: jack <[email protected]>
AuthorDate: Mon Aug 23 14:38:49 2021 +0800
fix words, Serverlet to Servlet and 时间 to 事件 (#899)
---
content/zh/docs/advanced/async-execute-on-provider.md | 2 +-
content/zh/docs/advanced/events-notify.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/zh/docs/advanced/async-execute-on-provider.md
b/content/zh/docs/advanced/async-execute-on-provider.md
index c62181f..1294b15 100644
--- a/content/zh/docs/advanced/async-execute-on-provider.md
+++ b/content/zh/docs/advanced/async-execute-on-provider.md
@@ -55,7 +55,7 @@ public class AsyncServiceImpl implements AsyncService {
## 使用AsyncContext
-Dubbo 提供了一个类似 Serverlet 3.0 的异步接口`AsyncContext`,在没有 CompletableFuture
签名接口的情况下,也可以实现 Provider 端的异步执行。
+Dubbo 提供了一个类似 Servlet 3.0 的异步接口`AsyncContext`,在没有 CompletableFuture
签名接口的情况下,也可以实现 Provider 端的异步执行。
服务接口定义:
diff --git a/content/zh/docs/advanced/events-notify.md
b/content/zh/docs/advanced/events-notify.md
index 197fbe2..9987379 100644
--- a/content/zh/docs/advanced/events-notify.md
+++ b/content/zh/docs/advanced/events-notify.md
@@ -3,7 +3,7 @@ type: docs
title: "事件通知"
linkTitle: "事件通知"
weight: 24
-description: "在调用之前、调用之后、出现异常时的时间通知"
+description: "在调用之前、调用之后、出现异常时的事件通知"
---
在调用之前、调用之后、出现异常时,会触发 `oninvoke`、`onreturn`、`onthrow`
三个事件,可以配置当事件发生时,通知哪个类的哪个方法。