# springboot-atomikos-mybatis **Repository Path**: fastssm/springboot-atomikos-mybatis ## Basic Information - **Project Name**: springboot-atomikos-mybatis - **Description**: spring boot 、 atomikos 、 mybatis 集成 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2018-03-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README spring boot + atomikos + mybatis 集成 SQL: /* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50714 Source Host : localhost:3306 Source Database : mydb Target Server Type : MYSQL Target Server Version : 50714 File Encoding : 65001 Date: 2016-09-20 09:35:00 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `t_test` -- ---------------------------- DROP TABLE IF EXISTS `t_test`; CREATE TABLE `t_test` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `test` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_test -- ---------------------------- -- ---------------------------- -- Table structure for `t_user` -- ---------------------------- DROP TABLE IF EXISTS `t_user`; CREATE TABLE `t_user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `age` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_user -- ----------------------------