从零玩转分库分表 (建立JDBC环境)
从零玩转ShardingSphere分库分表 (建立JDBC环境)创建表CREATE TABLE `t_order` ( `tid` bigint(20) NOT NULL, `tname` varchar(255) DEFAULT NULL, `goods_id` bigint(20) DEFAULT NULL, `tstatus` varchar(255) DEFAULT NULL, PRIMARY KEY (`tid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;建立Mybatis-plus工程添加依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <