mode: db # 选择数据库 db: datasource: druid db-type: mysql driver-class-name: com.mysql.cj.jdbc.Driver url:jdbc:mysql://127.0.0.1:3306/seata?rewriteBatchedStatements=true #TC服务器的数据库,我自己建了一个,还需要建表的 user: root # 数据库账号 password: root # 数据库密码 min-conn: 5...
多个目录用逗号或者分号分隔(告诉 Mapper 所对应的 XML 文件位置)mapper-locations:classpath:com/luoyu/mybatisplus/mapper/xml/*.xml# 以下配置均有默认值,可以不设置global-config:db-config:#主键类型 auto:"数据库ID自增" 1:"用户输入ID",2:"全局唯一...
MybatisSqlSessionFactoryBeanbean = new MybatisSqlSessionFactoryBean(); bean.setDataSource(dataSource); org.apache.ibatis.session.Configuration configuration = newMybatisConfiguration(); //读取null值设置 configuration.setCallSettersOnNulls(true); bean.setConfiguration(configuration); PathMatchingResourcePattern...
mybatis plus版本 3.5.3.2 dynamic datasource版本 4.2.0 seata版本 1.5.2 项目实战 由于上一篇已经写过mybatis-plus+Nacos实现动态数据源了,这一次只是在补充添加seata就好 安装seata客户端 下载链接:https://github.com/seata/seata/releases 修改配置文件 seata/conf/application.yml ...