This is an automated email from the ASF dual-hosted git repository.
liujun pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.2 by this push:
new c68faccd56 fixed broken link readme.md (#11641)
c68faccd56 is described below
commit c68faccd5625d677047983998558c6c61e17067b
Author: Laukik Chahande <[email protected]>
AuthorDate: Fri Feb 24 12:17:06 2023 +0530
fixed broken link readme.md (#11641)
---
README.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index eac2bdcddd..2b23fea32b 100644
--- a/README.md
+++ b/README.md
@@ -29,14 +29,14 @@ We are now collecting Dubbo user info to help us to improve
Dubbo further. Kindl
## Getting started
-The following code snippet comes from [Dubbo
Samples](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-api).
You may clone the sample project and step into the `dubbo-samples-api`
subdirectory before proceeding.
+The following code snippet comes from [Dubbo
Samples](https://github.com/apache/dubbo-samples.git). You may clone the sample
project and step into the `dubbo-samples-api` subdirectory before proceeding.
```bash
git clone https://github.com/apache/dubbo-samples.git
cd dubbo-samples/dubbo-samples-api
```
-There's a
[README](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-api/README.md)
file under `dubbo-samples-api` directory. We recommend referencing the samples
in that directory by following the below-mentioned instructions:
+There's a
[README](https://github.com/apache/dubbo-samples/blob/389cd612f1ea57ee6e575005b32f195c442c35a2/1-basic/dubbo-samples-api/README.md)
file under `dubbo-samples-api` directory. We recommend referencing the samples
in that directory by following the below-mentioned instructions:
### Maven dependency
@@ -70,7 +70,7 @@ public interface GreetingsService {
}
```
-*See
[api/GreetingsService.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java)
on GitHub.*
+*See
[api/GreetingsService.java](https://github.com/apache/dubbo-samples/blob/389cd612f1ea57ee6e575005b32f195c442c35a2/1-basic/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java)
on GitHub.*
### Implement service interface for the provider
@@ -87,7 +87,7 @@ public class GreetingsServiceImpl implements GreetingsService
{
}
```
-*See
[provider/GreetingsServiceImpl.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java)
on GitHub.*
+*See
[provider/GreetingsServiceImpl.java](https://github.com/apache/dubbo-samples/blob/389cd612f1ea57ee6e575005b32f195c442c35a2/1-basic/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java)
on GitHub.*
### Start service provider
@@ -119,7 +119,7 @@ public class Application {
}
```
-*See
[provider/Application.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/Application.java)
on GitHub.*
+*See
[provider/Application.java](https://github.com/apache/dubbo-samples/blob/389cd612f1ea57ee6e575005b32f195c442c35a2/1-basic/dubbo-samples-spring-xml/src/main/java/org/apache/dubbo/samples/provider/Application.java)
on GitHub.*
### Build and run the provider
@@ -153,7 +153,7 @@ public class Application {
}
}
```
-*See
[consumer/Application.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/client/Application.java)
on GitHub.*
+*See
[client/Application.java](https://github.com/apache/dubbo-samples/blob/389cd612f1ea57ee6e575005b32f195c442c35a2/1-basic/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/client/Application.java)
on GitHub.*
### Build and run the consumer