This is an automated email from the ASF dual-hosted git repository.

liujun 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 6f0268c9c0 fixed error causing commands (#2305)
6f0268c9c0 is described below

commit 6f0268c9c069441188015389efc7af709dbe3987
Author: Laukik Chahande <[email protected]>
AuthorDate: Fri Feb 24 08:40:37 2023 +0530

    fixed error causing commands (#2305)
    
    in the java sdk quick start - dubbo x spring boot documentation. some 
commands are caussing error for linux/macos due to extra space between double 
inverted commas"
---
 content/en/docs3-v2/java-sdk/quick-start/spring-boot.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 1d3402a96f..c623d713a5 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
@@ -150,7 +150,7 @@ 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"
 
 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 
"
+./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"
 
 Note: You need to open an independent terminal to run, and the command will 
keep executing.
 ```
@@ -172,7 +172,7 @@ 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"
 
 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 
"
+./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"
 
 
 ```

Reply via email to