完整代码地址:https://github.com/firery/imooc-seckill
代码都有完整的注释,依赖更新为目前的最新版本,数据库采用MySQL 8.0。
另外有少许优化,比如最后的浏览器计时误差等。
代码都有完整的注释,依赖更新为目前的最新版本,数据库采用MySQL 8.0。
另外有少许优化,比如最后的浏览器计时误差等。
2016-09-27
<!--加载数据库-->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:jdbc.properties</value>
</property>
<property name="fileEncoding" value="utf-8"/>
</bean>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:jdbc.properties</value>
</property>
<property name="fileEncoding" value="utf-8"/>
</bean>
2016-09-22
如果遇到数据库连接问题,可以这样,
老师用了<context>加载数据库配置信息。<context:property-placeholder location="classpath:jdbc.properties"/>
把这段代码换成下面的试试,我是这样成功的,你们可以试试
老师用了<context>加载数据库配置信息。<context:property-placeholder location="classpath:jdbc.properties"/>
把这段代码换成下面的试试,我是这样成功的,你们可以试试
2016-09-22
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`start_time` timestamp NOT NULL COMMENT '秒杀开启时间',
`end_time` timestamp NOT NULL COMMENT '秒杀结束时间',
把create_time字段放在start_time和end_time前面,SQL语句可以执行,我是用MySQL 5.5版本。
`start_time` timestamp NOT NULL COMMENT '秒杀开启时间',
`end_time` timestamp NOT NULL COMMENT '秒杀结束时间',
把create_time字段放在start_time和end_time前面,SQL语句可以执行,我是用MySQL 5.5版本。
2016-09-21