# deamon **Repository Path**: withoutaword/deamon ## Basic Information - **Project Name**: deamon - **Description**: 手写分布式事务 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-04-23 - **Last Updated**: 2021-04-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # deamon #### 介绍 手写分布式事务 #### 软件架构 软件架构说明 只是一个简单的小例子,帮助我们理解分布式事务的处理方式(AT) #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1.需要在application.yml维护数据库连接相关信息 ```$xslt spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: xxx username: xxx password: xxx type: com.zaxxer.hikari.HikariDataSource hikari: minimum-idle: 5 maximum-pool-size: 15 auto-commit: true idle-timeout: 30000 connection-timeout: 30000 connection-test-query: SELECT 1 ``` 2.项目启动步骤 ``` 1.先启动tc事务协调者 2.启动server1,server2 3.tm为server1和server2公用模块 ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request