# bigDataImport **Repository Path**: senses0904/bigDataImport ## Basic Information - **Project Name**: bigDataImport - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 2 - **Created**: 2020-10-14 - **Last Updated**: 2022-02-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## POI实现 50万条数据导入 + 导入 56万条只需要12s 左右 + 实现原理 + 多线程 + Mybatis批量 + 测试硬件环境 + win10 + intel i3 八核 16G内存 + 软件环境 + Springboot2.0 + + MyBatis + Mysql 5.7 + + 运行 + http://localhost:7001/ + 数据库表 + 建库 ```` SQL SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for import_data -- ---------------------------- DROP TABLE IF EXISTS `import_data`; CREATE TABLE `import_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) DEFAULT NULL, `no` int(11) DEFAULT NULL, `grade` varchar(20) DEFAULT NULL, `age` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=560725 DEFAULT CHARSET=utf8mb4; ````