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 bbb9a203c3b Fix windows command involving -Dexec (#2957)
bbb9a203c3b is described below
commit bbb9a203c3bcfb89380234df6778b8095065a4ca
Author: Swapnil Dewalkar <[email protected]>
AuthorDate: Wed Apr 10 10:30:46 2024 +0530
Fix windows command involving -Dexec (#2957)
---
content/en/docs3-v2/java-sdk/quick-start/brief.md | 4 ++--
content/en/docs3-v2/java-sdk/quick-start/spring-boot.md | 4 ++--
content/en/docs3-v2/java-sdk/quick-start/spring-xml.md | 4 ++--
content/zh-cn/overview/mannual/java-sdk/quick-start/brief.md | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/content/en/docs3-v2/java-sdk/quick-start/brief.md
b/content/en/docs3-v2/java-sdk/quick-start/brief.md
index 66e4aa29868..41d9dedc5d7 100644
--- a/content/en/docs3-v2/java-sdk/quick-start/brief.md
+++ b/content/en/docs3-v2/java-sdk/quick-start/brief.md
@@ -100,7 +100,7 @@ After starting the registry, the next step is to start a
service provider that p
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
"-Dexec.mainClass=org.apache.dubbo.samples.provider.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
@@ -122,7 +122,7 @@ The last step is to start a service consumer to call the
service provider, which
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
"-Dexec.mainClass=org.apache.dubbo.samples.client.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"
diff --git a/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
b/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
index baeccf27d95..c7c2c9cbc06 100644
--- a/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
+++ b/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
@@ -147,7 +147,7 @@ After starting the registry, the next step is to start a
service provider that p
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-provider
-Dexec.mainClass="org.apache.dubbo.springboot.demo.provider
.ProviderApplication"
+./mvnw.cmd clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-provider
"-Dexec.mainClass=org.apache.dubbo.springboot.demo.provider.ProviderApplication"
Linux / MacOS:
./mvnw clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-provider
-Dexec.mainClass="org.apache.dubbo.springboot.demo.provider.ProviderApplication"
@@ -169,7 +169,7 @@ The last step is to start a service consumer to call the
service provider, which
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-consumer
-Dexec.mainClass="org.apache.dubbo.springboot.demo.consumer
.ConsumerApplication"
+./mvnw.cmd clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-consumer
"-Dexec.mainClass=org.apache.dubbo.springboot.demo.consumer.ConsumerApplication"
Linux / MacOS:
./mvnw clean compile exec:java -pl
1-basic/dubbo-samples-spring-boot/dubbo-samples-spring-boot-consumer
-Dexec.mainClass="org.apache.dubbo.springboot.demo.consumer.ConsumerApplication"
diff --git a/content/en/docs3-v2/java-sdk/quick-start/spring-xml.md
b/content/en/docs3-v2/java-sdk/quick-start/spring-xml.md
index 472aa803ba8..1228a421bdb 100644
--- a/content/en/docs3-v2/java-sdk/quick-start/spring-xml.md
+++ b/content/en/docs3-v2/java-sdk/quick-start/spring-xml.md
@@ -63,7 +63,7 @@ After starting the registry, the next step is to start a
service provider that p
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
"-Dexec.mainClass=org.apache.dubbo.samples.provider.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
@@ -86,7 +86,7 @@ The last step is to start a service consumer to call the
service provider, which
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
"-Dexec.mainClass=org.apache.dubbo.samples.client.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-spring-xml
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"
diff --git a/content/zh-cn/overview/mannual/java-sdk/quick-start/brief.md
b/content/zh-cn/overview/mannual/java-sdk/quick-start/brief.md
index 574733c5bab..32e8507bfbd 100644
--- a/content/zh-cn/overview/mannual/java-sdk/quick-start/brief.md
+++ b/content/zh-cn/overview/mannual/java-sdk/quick-start/brief.md
@@ -108,7 +108,7 @@ docker run --name some-zookeeper -p 2181:2181 --restart
always -d zookeeper
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
"-Dexec.mainClass=org.apache.dubbo.samples.provider.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.provider.Application"
@@ -130,7 +130,7 @@ Linux / MacOS:
```bash
Windows:
-./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"
+./mvnw.cmd clean compile exec:java -pl 1-basic/dubbo-samples-api
"-Dexec.mainClass=org.apache.dubbo.samples.client.Application"
Linux / MacOS:
./mvnw clean compile exec:java -pl 1-basic/dubbo-samples-api
-Dexec.mainClass="org.apache.dubbo.samples.client.Application"