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 74be66c0c54 # http (#1536)
74be66c0c54 is described below

commit 74be66c0c549c2fa847fc540b7a082b416e6c390
Author: JIAN ZHONG <[email protected]>
AuthorDate: Sat Oct 8 09:09:04 2022 +0800

    # http (#1536)
---
 .../docs3-v2/java-sdk/reference-manual/protocol/http.md   | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/content/zh/docs3-v2/java-sdk/reference-manual/protocol/http.md 
b/content/zh/docs3-v2/java-sdk/reference-manual/protocol/http.md
index f9b594ee87e..3544ef5c1f6 100644
--- a/content/zh/docs3-v2/java-sdk/reference-manual/protocol/http.md
+++ b/content/zh/docs3-v2/java-sdk/reference-manual/protocol/http.md
@@ -36,22 +36,22 @@ http短连接,协议标准化且易读,容易对接外部系统,适用于
 </dependency>
 ```
 
-配置协议:
+### 配置协议
 ```xml
 <dubbo:protocol name="http" port="8080" />
 ```
 
-配置 Jetty Server (默认):
+### 配置 Jetty Server (默认)
 ```xml
 <dubbo:protocol ... server="jetty" />
 ```
 
-配置 Servlet Bridge Server (推荐使用):
+### 配置 Servlet Bridge Server (推荐使用)
 ```xml
 <dubbo:protocol ... server="servlet" />
 ```
 
-配置 DispatcherServlet:
+### 配置 DispatcherServlet
 
 ```xml
 <servlet>
@@ -65,7 +65,6 @@ http短连接,协议标准化且易读,容易对接外部系统,适用于
 </servlet-mapping>
 ```
 
-#### 注意:
-如果使用 servlet 派发请求:
-* 协议的端口 `<dubbo:protocol port="8080" />` 必须与 servlet 容器的端口相同,
-* 协议的上下文路径 `<dubbo:protocol contextpath="foo" />` 必须与 servlet 应用的上下文路径相同。
+> 如果使用 servlet 派发请求
+> * 协议的端口 `<dubbo:protocol port="8080" />` 必须与 servlet 容器的端口相同,
+> * 协议的上下文路径 `<dubbo:protocol contextpath="foo" />` 必须与 servlet 应用的上下文路径相同。

Reply via email to