seata-1.4.0 설치 및 springcloud 에서 사용 상세 설명
9554 단어 springcloudseata
1.소개
Seata 는 고성능 과 간단 하고 사용 하기 쉬 운 분포 식 사무 서 비 스 를 제공 하 는 데 주력 하 는 분포 식 사무 솔 루 션 이다.Seata 는 사용자 에 게 AT,TCC,SAGA,XA 트 랜 잭 션 모델 을 제공 하여 사용자 에 게 원 스 톱 분산 솔 루 션 을 만 들 것 이다.
자세 한 내용 은 공식 문서 참조:https://seata.io/zh-cn/docs/overview/what-is-seata.html
인터넷 의 대부분 은 0.9.0 버 전의 설치 방식 으로 seata-1.4.0 버 전 을 설치 하 는 방식 을 기록 하고 win 10 환경 에서 설치 하 며 centos 7 은 이와 같다.
다운로드 하 다.
seata-1.4.0.zip 와 seata-server-1.4.0.zip 두 개의 설치 패 키 지 를 다운로드 해 야 합 니 다.
다운로드 주소:https://github.com/seata/seata/releases
2.1、seata-server-1.4.0
설치 설정
압축 해제 패키지,conf 내 프로필 수정
2.1.1,registry.conf 수정:
nacos , nacos
registry {
# file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
type = "nacos"
loadBalance = "RandomLoadBalance"
loadBalanceVirtualNodes = 10
nacos {
application = "seata-server"
serverAddr = "127.0.0.1:8848"
group = "SEATA_GROUP"
namespace = ""
cluster = "default"
username = "nacos"
password = "nacos"
}
}
config {
# file、nacos 、apollo、zk、consul、etcd3
type = "nacos"
nacos {
serverAddr = "127.0.0.1:8848"
namespace = ""
group = "SEATA_GROUP"
username = "nacos"
password = "nacos"
}
}
2.1.2、file.conf 수정:
, mysql5/mysql8
store {
## store mode: file、db、redis
mode = "db"
## database store property
db {
## the implement of javax.sql.DataSource, such as DruidDataSource(druid)/BasicDataSource(dbcp)/HikariDataSource(hikari) etc.
datasource = "druid"
## mysql/oracle/postgresql/h2/oceanbase etc.
dbType = "mysql"
driverClassName = "com.mysql.cj.jdbc.Driver"
url = "jdbc:mysql://127.0.0.1:3307/seata?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=true"
user = "root"
password = "123456"
minConn = 5
maxConn = 100
globalTable = "global_table"
branchTable = "branch_table"
lockTable = "lock_table"
queryLimit = 100
maxWait = 5000
}
}
2.1.3 데이터베이스 만 들 기
seata, (branch_table, global_table, lock_table), undo_log
-- the table to store GlobalSession data
drop table if exists `global_table`;
create table `global_table` (
`xid` varchar(128) not null,
`transaction_id` bigint,
`status` tinyint not null,
`application_id` varchar(32),
`transaction_service_group` varchar(32),
`transaction_name` varchar(128),
`timeout` int,
`begin_time` bigint,
`application_data` varchar(2000),
`gmt_create` datetime,
`gmt_modified` datetime,
primary key (`xid`),
key `idx_gmt_modified_status` (`gmt_modified`, `status`),
key `idx_transaction_id` (`transaction_id`)
);
-- the table to store BranchSession data
drop table if exists `branch_table`;
create table `branch_table` (
`branch_id` bigint not null,
`xid` varchar(128) not null,
`transaction_id` bigint ,
`resource_group_id` varchar(32),
`resource_id` varchar(256) ,
`lock_key` varchar(128) ,
`branch_type` varchar(8) ,
`status` tinyint,
`client_id` varchar(64),
`application_data` varchar(2000),
`gmt_create` datetime,
`gmt_modified` datetime,
primary key (`branch_id`),
key `idx_xid` (`xid`)
);
-- the table to store lock data
drop table if exists `lock_table`;
create table `lock_table` (
`row_key` varchar(128) not null,
`xid` varchar(96),
`transaction_id` long ,
`branch_id` long,
`resource_id` varchar(256) ,
`table_name` varchar(32) ,
`pk` varchar(36) ,
`gmt_create` datetime ,
`gmt_modified` datetime,
primary key(`row_key`)
);
-- the table to store seata xid data
-- 0.7.0+ add context
-- you must to init this sql for you business databese. the seata server not need it.
-- , AT XID 。 server ( : )
-- 0.3.0+ ux_undo_log
drop table `undo_log`;
CREATE TABLE `undo_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`branch_id` bigint(20) NOT NULL,
`xid` varchar(100) NOT NULL,
`context` varchar(128) NOT NULL,
`rollback_info` longblob NOT NULL,
`log_status` int(11) NOT NULL,
`log_created` datetime NOT NULL,
`log_modified` datetime NOT NULL,
`ext` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
2.1.4 시동
seata-1.4\bin : seata-server.bat
nacos
2.2 seata-1.4.0.
배치 하 다.
압축 해제 패키지 및 설정 수정
2.2.3 config.txt 수정
:script\config-center
service.vgroupMapping
service.vgroupMapping.system-server-group=default
service.vgroupMapping.product-server-group=default
store.mode=db
store.db.datasource=druid
store.db.dbType=mysql
store.db.driverClassName=com.mysql.cj.jdbc.Driver
store.db.url=jdbc:mysql://192.168.111.130:3307/seata?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=true
store.db.user=root
store.db.password=123456
store.db.minConn=5
store.db.maxConn=30
store.db.globalTable=global_table
store.db.branchTable=branch_table
store.db.queryLimit=100
store.db.lockTable=lock_table
store.db.maxWait=5000
:
service.vgroupMapping.system-server-group=default
service.vgroupMapping.product-server-group=default
#system-server-group、product-server-group yml seata.tx-service-group
2.2.3 nacos-config.sh 를 시작 합 니 다.
설정 을 nacos 에 주입 합 니 다.
1、seata-server-1.4.0\\script\config-centeracos 디 렉 터 리 에서 Git Bash Here 를 오른쪽 클릭 합 니 다.
2.명령 입력:
sh nacos-config.sh -h 127.0.0.1 -p 8848 -g SEATA_GROUP -u nacos -w nacos
복귀 성공
2.2.3,nacos 에서 설정 보기
nacos 설정 목록 에서 config.txt 설정 의 vgroup Mapping 을 찾 으 면 주입 성공 을 설명 합 니 다.
![여기에 그림 설명 삽입](https://img-blog.csdnimg.cn/20201214150808987.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl8zNzY5ODMzNg==,size_16,color_FFFFFF,t_70#pic_center
3.SpringCloud 설정
3.1 pom 추가 의존
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-seata</artifactId>
<exclusions>
<exclusion>
<groupId>io.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>1.4.0</version>
</dependency>
:seata-spring-boot-starter
3.2 yml 프로필 수정
seata:
enabled: true
application-id: product-server
tx-service-group: product-server-group
enable-auto-data-source-proxy: true
config:
type: nacos
nacos:
namespace:
server-addr: 127.0.0.1:8848
group: SEATA_GROUP
userName: "nacos"
password: "nacos"
registry:
type: nacos
nacos:
application: seata-server
server-addr: 127.0.0.1:8848
namespace:
userName: "nacos"
password: "nacos"
3.3.코드 에 주석 추가:
application :
@EnableAutoDataSourceProxy
service :
@GlobalTransactional(rollbackFor = Exception.class)
3.4.서비스 시작:콘 솔 출력:
3.5.테스트
호출 자 콘 솔 인쇄
호출 된 이상 콘 솔 인쇄:
seata-1.4.0 설치 및 springcloud 에서 사용 하 는 글 에 대해 소개 합 니 다.더 많은 springcloud seata 설치 사용 내용 은 이전 글 을 검색 하거나 아래 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Spring Cloud에서 Feign에 대한 일반적인 질문 요약1. FeignClient 인터페이스, @GettingMapping 같은 조합 메모는 사용할 수 없음 코드 예: 이쪽 @RequestMapping(value = "/simple/{id}", method = Reque...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.