最赞回答 / 疯筝萌萌
把db.properties里username换个名字,如user。或者spring-dao.xml的http://www.springframework.org/schema/context/spring-context.xsd 改为http://www.springframework.org/schema/context/spring-context-3.0.xsd
2016-05-12
最新回答 / syk93
可以 做新增的时候添加<selectKey ...>select replace(uuid().'-','') from dual</selectKey>就可以了
2016-05-10
最新回答 / 慕无忌5301941
<...图片...><...图片...> class path resource [spring/spring-dao.xml] cannot be opened because it does not exist 哎,好惆怅啊。。不知道为什么测试都过不了<...图片...>清问各位有没有遇到类似的问题呢,怎么解决的都
2016-05-10
已采纳回答 / 慕圣0177899
看下你的maven的版本试试mvn archetype:generate -DarchetypeCatalog=internal -DgroupId=com.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp
2016-05-09
已采纳回答 / 慕圣0177899
--数据库初始化脚本--创建数据库CREATE DATABASE seckilluse seckill--创建秒杀库存表CREATE TABLE seckill(seckill_id bigint NOT NULL AUTO_INCREMENT COMMENT '商品库存id',name varchar(120) NOT NULL COMMENT '商品名称',number int NOT NULL COMMENT '库存数量',start_time timestamp NOT NULL COMMENT ...
2016-05-06