# SpringBootMR **Repository Path**: sp999/springboot ## Basic Information - **Project Name**: SpringBootMR - **Description**: SpringBoot+Mybatis+Redis(二级缓存) - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-04-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #SpringBoot V1.0 SpringBoot+Mybatis+Redis(二级缓存) V1.1 Mybatis多数库支持 创建 表 user ```mysql CREATE TABLE `user` ( `id` int(11) DEFAULT NULL, `user_name` varchar(200) DEFAULT NULL, `description` varchar(200) DEFAULT NULL ); CREATE TABLE `city` ( `id` int(11) NOT NULL AUTO_INCREMENT, `province_id` int(11) DEFAULT NULL, `city_name` varchar(100) DEFAULT NULL, `description` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ); ```