新增 spring boot 多数据源用例 支持分布式事务(JTA方式实现)

This commit is contained in:
罗祥
2019-01-27 10:25:59 +08:00
parent 63f0c12af3
commit 81c249e124
7 changed files with 24 additions and 56 deletions

View File

@ -0,0 +1,8 @@
-- 建表语句
create table if not exists programmer (
id int primary key auto_increment,
name varchar(20),
age tinyint,
salary float,
birthday datetime
)