摘要: -- 创建数据库CREATE DATABASE seckill;-- 使用数据库use seckill;CREATE TABLE seckill( `seckill_id` BIGINT NOT NUll AUTO_INCREMENT COMMENT '商品库存ID', `name` VARCHAR(120) NOT NULL COMMENT '商品名称', `number` int NO... 阅读全文
posted @ 2018-07-13 21:02 code白 阅读(1811) 评论(0) 推荐(0) 编辑
摘要: 本文参考地址:http://www.cnblogs.com/dongying/p/4048828.html 阅读全文
posted @ 2018-07-13 21:01 code白 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-07-13 20:23 code白 阅读(695) 评论(0) 推荐(0) 编辑
摘要: SqlSessionFactoryBuilder 类中代码public class SqlSessionFactoryBuilder { public SqlSessionFactory build(Reader reader) { return build(reader, null, null); } public SqlSessionFactory build(Rea... 阅读全文
posted @ 2018-07-13 19:37 code白 阅读(183) 评论(0) 推荐(0) 编辑
摘要: SqlSessionFactoryBuilder 类中代码public class SqlSessionFactoryBuilder { public SqlSessionFactory build(Reader reader) { return build(reader, null, null); 阅读全文
posted @ 2018-07-13 19:33 code白 阅读(75) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/dongying/p/4048828.html 阅读全文
posted @ 2018-07-13 16:28 code白 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/fei20072050104/article/details/21785565 JavaWeb: 报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Jav 阅读全文
posted @ 2018-07-13 14:55 code白 阅读(1658) 评论(0) 推荐(0) 编辑
摘要: maven学习可以参考 http://www.cnblogs.com/quanyongan/archive/2013/04/21/3033838.html http://www.cnblogs.com/izecsonLee/p/6155868.html 1.首先需要安装maven,然后配置maven 阅读全文
posted @ 2018-07-13 10:20 code白 阅读(131) 评论(0) 推荐(0) 编辑