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 75f8c28f61c # xml 配置 (#1502)
75f8c28f61c is described below

commit 75f8c28f61c56a436760316973173786799c1016
Author: JIAN ZHONG <[email protected]>
AuthorDate: Mon Sep 19 14:27:41 2022 +0800

    # xml 配置 (#1502)
---
 content/zh/docs3-v2/java-sdk/reference-manual/config/xml.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/content/zh/docs3-v2/java-sdk/reference-manual/config/xml.md 
b/content/zh/docs3-v2/java-sdk/reference-manual/config/xml.md
index 612d3bc5336..4152759456c 100644
--- a/content/zh/docs3-v2/java-sdk/reference-manual/config/xml.md
+++ b/content/zh/docs3-v2/java-sdk/reference-manual/config/xml.md
@@ -14,7 +14,7 @@ Dubbo 有基于 Spring Schema 扩展的自定义配置组件,使用 XML 能达
 ## 服务提供者
 
 
-#### 定义服务接口
+### 定义服务接口
 
 DemoService.java:
 
@@ -26,7 +26,7 @@ public interface DemoService {
 }
 ```
 
-#### 在服务提供方实现接口
+### 在服务提供方实现接口
 
 DemoServiceImpl.java:
 
@@ -41,7 +41,7 @@ public class DemoServiceImpl implements DemoService {
 }
 ```
 
-#### 用 Spring 配置声明暴露服务
+### 用 Spring 配置声明暴露服务
 
 ```xml
 <?xml version="1.0" encoding="UTF-8"?>
@@ -65,7 +65,7 @@ public class DemoServiceImpl implements DemoService {
 </beans>
 ```
 
-#### 加载 Spring 配置
+### 加载 Spring 配置
 
 ```java
 public class DemoServiceImpl implements DemoService {
@@ -80,7 +80,7 @@ public class DemoServiceImpl implements DemoService {
 
 ## 服务消费者
 
-#### 通过 Spring 配置引用远程服务
+### 通过 Spring 配置引用远程服务
 
 ```xml
 <?xml version="1.0" encoding="UTF-8"?>
@@ -100,7 +100,7 @@ public class DemoServiceImpl implements DemoService {
 </beans>
 ```
 
-#### 加载Spring配置,并调用远程服务
+### 加载 Spring 配置,并调用远程服务
 
 ```java
 public class BasicConsumer {

Reply via email to