sql语句创建时间戳类型错误,参考这个链接
https://blog.csdn.net/lis2012/article/details/82587901
https://blog.csdn.net/lis2012/article/details/82587901
2019-01-18
最赞回答 / plough
${username} 被系统用户名覆盖了,改个 key(${jdbc.username})数据库版本不一致。比如本地数据库是 8.0.12,mysql-connector-java 也要改成 8.0.12 这个版本以上是踩坑经验。
2018-12-05
在Eclipse的建立单元测试是,类文件右键->new->java->Junit->Junit Test Case
2018-12-04
create table success_killed(
seckill_id int not null comment '秒杀商品id',
user_phone int not null comment '用户手机号',
state tinyint not null default -1 comment '状态标示:-1:无效‘
create_time timestamp not null comment '创建时间',
primary key(seckill_id,user_phone),
key idx_create_time(create_time)
)
seckill_id int not null comment '秒杀商品id',
user_phone int not null comment '用户手机号',
state tinyint not null default -1 comment '状态标示:-1:无效‘
create_time timestamp not null comment '创建时间',
primary key(seckill_id,user_phone),
key idx_create_time(create_time)
)
2018-12-01