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 b5e1f980cd Update spring-boot.md (#2178)
b5e1f980cd is described below
commit b5e1f980cd7a374e900f021ba6292f81bb4d258f
Author: nothings00 <[email protected]>
AuthorDate: Tue Feb 14 09:31:55 2023 +0800
Update spring-boot.md (#2178)
修正4.定义服务接口中类的和方法的名字
---
content/zh-cn/docs3-v2/java-sdk/quick-start/spring-boot.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/zh-cn/docs3-v2/java-sdk/quick-start/spring-boot.md
b/content/zh-cn/docs3-v2/java-sdk/quick-start/spring-boot.md
index 1965ea52fc..3ddb8a178d 100644
--- a/content/zh-cn/docs3-v2/java-sdk/quick-start/spring-boot.md
+++ b/content/zh-cn/docs3-v2/java-sdk/quick-start/spring-boot.md
@@ -351,7 +351,7 @@ public interface DemoService {
}
```
-在 `GreetingsService` 中,定义了 `sayHi` 这个方法。后续服务端发布的服务,消费端订阅的服务都是围绕着
`GreetingsService` 接口展开的。
+在 `DemoService` 中,定义了 `sayHello` 这个方法。后续服务端发布的服务,消费端订阅的服务都是围绕着 `DemoService`
接口展开的。
### 5. 定义服务端的实现