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

jimin pushed a commit to branch docusaurus
in repository https://gitbox.apache.org/repos/asf/incubator-seata-website.git


The following commit(s) were added to refs/heads/docusaurus by this push:
     new 2e90067f0c1 optimize: change the maven group name in 
deploy-guide-beginner.md (#936)
2e90067f0c1 is described below

commit 2e90067f0c164c18072f65d1dfde0d4ddfd9789f
Author: jimin <sliev...@163.com>
AuthorDate: Thu Feb 13 10:57:51 2025 +0800

    optimize: change the maven group name in deploy-guide-beginner.md (#936)
    
    Signed-off-by: slievrly <sliev...@163.com>
---
 .../current/ops/deploy-guide-beginner.md           | 14 +++++-----
 .../current/ops/deploy-guide-beginner.md           | 32 +++++++++++-----------
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git 
a/i18n/en/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md 
b/i18n/en/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
index 85624d1af9b..29a118cd31b 100644
--- 
a/i18n/en/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
+++ 
b/i18n/en/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
@@ -33,11 +33,11 @@ Data source automatic proxy is turned on by default, and it 
can be turned off by
 In the @SpringBootApplication annotation, exclude 
com.alibaba.cloud.seata.GlobalTransactionAutoConfiguration in 
spring-cloud-starter-alibaba-seata
 ```
 
-- Recommendations for spring-cloud-starter-alibaba-seata dependency 
configuration 
+- Recommendations for spring-cloud-starter-alibaba-seata dependency 
configuration
 
 ```java
             <dependency>
-                 <groupId>io.seata</groupId>
+                 <groupId>org.apache.seata</groupId>
                  <artifactId>seata-spring-boot-starter</artifactId>
              </dependency>
              <dependency>
@@ -45,7 +45,7 @@ In the @SpringBootApplication annotation, exclude 
com.alibaba.cloud.seata.Global
                  <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
                  <exclusions>
                      <exclusion>
-                         <groupId>io.seata</groupId>
+                         <groupId>org.apache.seata</groupId>
                          <artifactId>seata-spring-boot-starter</artifactId>
                      </exclusion>
                  </exclusions>
@@ -117,7 +117,7 @@ Note: It is recommended to allocate 2G of heap memory and 
1G of off-heap memory.
         0.9.0: support.spring.datasource.autoproxy=true
         ```
         If XA mode is used, `@EnableAutoDataSourceProxy(dataSourceProxyMode = 
"XA")`
-    
+
     - For manual configuration, please refer to the example below
         ```
         @Primary
@@ -134,7 +134,7 @@ Note: It is recommended to allocate 2G of heap memory and 
1G of off-heap memory.
     - When using automatic proxy data sources, you need to adjust the 
configuration file if you use XA mode
         application.properties
         ```
-        seata.data-source-proxy-mode=XA  
+        seata.data-source-proxy-mode=XA
         ```
         application.yml
         ```
@@ -163,7 +163,7 @@ Note: It is recommended to allocate 2G of heap memory and 
1G of off-heap memory.
                 txServiceGroup = applicationName + "-fescar-service-group";
                 this.seataProperties.setTxServiceGroup(txServiceGroup);
             }
-   
+
             return new GlobalTransactionScanner(applicationName, 
txServiceGroup);
         }
 ```
@@ -257,4 +257,4 @@ public void rollback(BusinessActionContext context) {
         pointcut.setExpression("Configure pointcut expression to enable global 
transaction interceptor");
         return new DefaultPointcutAdvisor(pointcut, 
aspectTransactionalInterceptor);
     }
-```
\ No newline at end of file
+```
diff --git 
a/i18n/zh-cn/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
 
b/i18n/zh-cn/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
index e171792d284..e9548249d3b 100644
--- 
a/i18n/zh-cn/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
+++ 
b/i18n/zh-cn/docusaurus-plugin-content-docs/current/ops/deploy-guide-beginner.md
@@ -36,7 +36,7 @@ Seata分TC、TM和RM三个角色,TC(Server端)为单独服务端部署,T
 
 ```java
            <dependency>
-                <groupId>io.seata</groupId>
+                <groupId>org.apache.seata</groupId>
                 <artifactId>seata-spring-boot-starter</artifactId>
                 <version>最新版</version>
             </dependency>
@@ -46,7 +46,7 @@ Seata分TC、TM和RM三个角色,TC(Server端)为单独服务端部署,T
                 <version>最新版本</version>
                 <exclusions>
                     <exclusion>
-                        <groupId>io.seata</groupId>
+                        <groupId>org.apache.seata</groupId>
                         <artifactId>seata-spring-boot-starter</artifactId>
                     </exclusion>
                 </exclusions>
@@ -57,8 +57,8 @@ Seata分TC、TM和RM三个角色,TC(Server端)为单独服务端部署,T
 
 ### 启动Server
 
-Server端存储模式(store.mode)现有file、db、redis、raft,file模式无需改动,直接启动即可,raft部署方式请访问[专门部署文档](/docs/ops/deploy-server-raft/),下面专门讲下db和redis启动步骤。
  
-注: file模式为单机模式,全局事务会话信息内存中读写并异步(默认)持久化本地文件root.data,性能较高;  
+Server端存储模式(store.mode)现有file、db、redis、raft,file模式无需改动,直接启动即可,raft部署方式请访问[专门部署文档](/docs/ops/deploy-server-raft/),下面专门讲下db和redis启动步骤。
+注: file模式为单机模式,全局事务会话信息内存中读写并异步(默认)持久化本地文件root.data,性能较高;
 
 db模式为高可用模式,全局事务会话信息通过db共享,相应性能差些;
 
@@ -73,18 +73,18 @@ redis模式Seata-Server 1.3及以上版本支持,性能较高,存在事务信息
 
 #### 步骤三:修改store.mode
 
-启动包: seata-->conf-->application.yml,修改store.mode="db或者redis"  
+启动包: seata-->conf-->application.yml,修改store.mode="db或者redis"
 源码:   根目录-->seata-server-->resources-->application.yml,修改store.mode="db或者redis"
 
 #### 步骤四:修改数据库连接|redis属性配置
 
-启动包: 
seata-->conf-->application.example.yml中附带额外配置,将其db|redis相关配置复制至application.yml,进行修改store.db或store.redis相关属性。
  
-源码:   
根目录-->seata-server-->resources-->application.example.yml中附带额外配置,将其db/redis相关配置复制至application.yml,进行修改store.db或store.redis相关属性。
  
+启动包: 
seata-->conf-->application.example.yml中附带额外配置,将其db|redis相关配置复制至application.yml,进行修改store.db或store.redis相关属性。
+源码:   
根目录-->seata-server-->resources-->application.example.yml中附带额外配置,将其db/redis相关配置复制至application.yml,进行修改store.db或store.redis相关属性。
 
 
 #### 步骤五:启动
 
-- 源码启动: 执行ServerApplication.java的main方法  
+- 源码启动: 执行ServerApplication.java的main方法
 - 命令启动: seata-server.sh -h 127.0.0.1 -p 8091 -m db
 
 注: 堆内存建议分配2G,堆外内存1G
@@ -108,7 +108,7 @@ redis模式Seata-Server 1.3及以上版本支持,性能较高,存在事务信息
         0.9.0: support.spring.datasource.autoproxy=true
         ```
         如果采用XA模式,`@EnableAutoDataSourceProxy(dataSourceProxyMode = "XA")`
-    
+
     - 手动配置可参考下方的例子
         ```
         @Primary
@@ -122,21 +122,21 @@ redis模式Seata-Server 1.3及以上版本支持,性能较高,存在事务信息
         ```
 
 2. 如果使用seata-starter
-    - 使用自动代理数据源时,如果使用XA模式还需要调整配置文件  
+    - 使用自动代理数据源时,如果使用XA模式还需要调整配置文件
         application.properties
         ```
-        seata.data-source-proxy-mode=XA  
+        seata.data-source-proxy-mode=XA
         ```
         application.yml
         ```
         seata:
           data-source-proxy-mode: XA
         ```
-    
-    - 如何关闭seata-spring-boot-starter的数据源自动代理?   
+
+    - 如何关闭seata-spring-boot-starter的数据源自动代理?
         application.properties
         ```
-        seata.enable-auto-data-source-proxy=false  
+        seata.enable-auto-data-source-proxy=false
         ```
         application.yml
         ```
@@ -144,7 +144,7 @@ redis模式Seata-Server 1.3及以上版本支持,性能较高,存在事务信息
           enable-auto-data-source-proxy: false
         ```
 
-#### 步骤四:初始化GlobalTransactionScanner  
+#### 步骤四:初始化GlobalTransactionScanner
 - 手动
 ```  @Bean
        @Bean
@@ -155,7 +155,7 @@ redis模式Seata-Server 1.3及以上版本支持,性能较高,存在事务信息
                txServiceGroup = applicationName + "-fescar-service-group";
                this.seataProperties.setTxServiceGroup(txServiceGroup);
            }
-   
+
            return new GlobalTransactionScanner(applicationName, 
txServiceGroup);
        }
 ```


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@seata.apache.org
For additional commands, e-mail: notifications-h...@seata.apache.org

Reply via email to