文章目录
本文内容整理自慕课网上的一套免费教学视频–Java高并发秒杀API。课程的内容包括了秒杀业务分析、开发项目的Dao层、Service层以及Web层。其中使用的技术框架有:Spring、SpringMVC、MyBatis、Redis、Boostrap、jQuery。
1.秒杀系统分析
##1.1 秒杀系统业务分析
-
秒杀系统的核心是对库存的处理,业务流程图如下所示
-
用户针对库存业务分析
- 减库存
- 记录购买明细 (记录秒杀成功信息)
1)记录谁购买成功了
2)成功的时间/有效期
3)付款/发货信息
##1.2 秒杀系统技术分析
- 为什么需要事务?
一旦用户秒杀成功系统需要做两步操作,减库存以及记录购买明细。利用数据库可以实现这操作的"事务"特性。如果没有控制事务,可能会发生如下情况:
- 减库存成功而记录购买明细失败,会导致少卖
- 记录购买明细成功而减库存失败,会导致超卖
- 数据落地方案选择
关于数据如何落地,有MySQL和NoSQL这两种方案选择。
-
MySQL是关系型数据库,它有多种存储引擎,只有InnoDB存储引擎支持事务。使用InnoDB存储引擎可以帮助我们完成减库存和记录购买明细的事务操作,InnoDB支持行级锁和表级锁,默认使用行级锁。
-
NoSQL是非关系型数据库,对于事务的支持做的不是很好,NoSQL更多的适用于高并发数据读写和海量数据存储等应用场景。
事务机制依然是目前可靠的落地方案
- MySQL实现秒杀的难点分析
当一个用户成功秒杀某件商品后,其他秒杀这件商品的用户只能等到,直到上一个用户成功提交事务或者回滚事务,他才能得到锁执行秒杀操作。锁的竞争,就是采用数据库方案的难点问题。
MySQL实现秒杀的机制是:事务+行级锁
Start Transaction
Update 库存数量
Insert 购买明细
Commit
#2.秒杀系统实现
##2.1 Dao层实现
- 数据库脚本
创建秒杀商品表、秒杀成功明细表。
-- 数据库初始化脚本
-- 创建数据库
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 NOT NULL COMMENT '库存数量',
`start_time` DATETIME NOT NULL COMMENT '秒杀开启时间',
`end_time` DATETIME NOT NULL COMMENT '秒杀结束时间',
`create_time` DATETIME NOT NULL DEFAULT now() COMMENT '创建时间',
PRIMARY KEY (seckill_id),
KEY idx_start_time(start_time),
KEY idx_end_time(end_time),
KEY idx_create_time(create_time)
) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 COMMENT='秒杀库存表';
-- 初始化数据
INSERT INTO seckill(name,number,start_time,end_time) VALUES ('1000元秒杀iPhone6',100,'2017-11-19 00:00:00','2017-11-20 00:00:00');
INSERT INTO seckill(name,number,start_time,end_time) VALUES ('500元秒杀ipad2',200,'2017-11-20 00:00:00','2017-11-21 00:00:00');
INSERT INTO seckill(name,number,start_time,end_time) VALUES ('300元秒杀小米4',300,'2017-11-21 00:00:00','2017-11-22 00:00:00');
INSERT INTO seckill(name,number,start_time,end_time) VALUES ('200元秒杀红米note',400,'2017-11-22 00:00:00','2017-11-23 00:00:00');
-- 秒杀成功明细表
-- 用户登录认证相关的信息
CREATE TABLE success_killed(
`seckill_id` BIGINT NOT NULL COMMENT '秒杀商品id',
`user_phone` BIGINT NOT NULL COMMENT '用户手机号',
`state` TINYINT NOT NULL DEFAULT -1 COMMENT '状态标识:-1:无效 0:成功 1:已付款',
`create_time` DATETIME NOT NULL COMMENT '创建时间',
PRIMARY KEY (seckill_id,user_phone), /* 联合主键 */
KEY idx_create_time(create_time)
)ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = '秒杀成功明细';
-- 连接数据库控制台命令
mysql -uroot -p
-- 查看表结构
show create table seckill\G
- 创建工程
可以使用IDE工具创建一个maven项目,也可以可以通过maven命令来创建一个项目的骨架。可以通过如下命令创建一个web项目
mvn archetype:generate -DgroupId=com.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp
用maven命令创建出来的项目servlet版本比较低,不支持el表达式,需要手动将web.xml中servlet的版本改为3.1。
- 整合Spring和MyBatis
在resources下创建jdbc.properties文件
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/seckill?useUnicode=true&characterEncoding=utf8
username=root
password=root
在resources下创建mybatis-config.xml文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 配置全局属性-->
<settings>
<!-- 使用jdbc的getGeneratedKeys 获取数据库自增主键值-->
<setting name="useGeneratedKeys" value="true"/>
<!-- 使用列别名替换列名 默认:true
select name as title from table
-->
<setting name="useColumnLabel" value="true" />
<!-- 开启驼峰命名转换:Table(create_time) -> Entity(createTime) -->
<setting name="mapUnderscoreToCamelCase" value="true"/>
</settings>
</configuration>
在resources目录下创建一个新的目录spring(存放所有spring相关的配置),spring目录下创建spring-dao.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 配置整合mybatis过程-->
<!-- 1:配置数据库相关参数properties的属性:${url} -->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 2:数据库连接池-->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<!-- 配置连接池属性-->
<property name="driverClass" value="${driver}" />
<property name="jdbcUrl" value="${url}" />
<property name="user" value="${username}" />
<property name="password" value="${password}" />
<!-- c3p0连接池的私有属性-->
<property name="maxPoolSize" value="30" />
<property name="minPoolSize" value="10" />
<!-- 关闭连接后不自动commit-->
<property name="autoCommitOnClose" value="false" />
<!-- 获取连接超时时间-->
<property name="checkoutTimeout" value="1000" />
<!-- 当获取连接失败重试次数-->
<property name="acquireIncrement" value="2" />
</bean>
<!-- 约定大于配置-->
<!-- 3:配置SqlSessionFactory对象-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注入数据库连接池-->
<property name="dataSource" ref="dataSource" />
<!-- 配置MyBatis全局配置文件:mybatis-config.xml-->
<property name="configLocation" value="classpath:mybatis-config.xml" />
<!-- 扫描entity包 使用别名-->
<property name="typeAliasesPackage" value="com.seckill.entity" />
<!-- 扫描sql配置文件;mapper需要的xml文件-->
<property name="mapperLocations" value="classpath:mapper/*.xml" />
</bean>
<!-- 4:配置扫描Dao接口包,动态实现Dao接口,注入到Spring容器中-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 注入sqlSessionFactory -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<!-- 给出扫描Dao接口包 -->
<property name="basePackage" value="com.seckill.dao" />
</bean>
<!-- 5:RedisDao配置-->
<bean id="redisDao" class="com.seckill.dao.cache.RedisDao">
<constructor-arg index="0" value="localhost"/>
<constructor-arg index="1" value="6379" />
</bean>
</beans>
- resources下创建mapper目录,mapper下专门存放dao映射文件。
##2.2 Service层实现
- 配置事务
resources/spring下创建spring-service.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 扫描service包下所有使用注解的类型-->
<context:component-scan base-package="com.seckill.service" />
<!-- 配置事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 注入数据库连接池-->
<property name="dataSource" ref="dataSource" />
</bean>
<!-- 配置基于注解的声明式事务
默认使用注解来管理事务行为
-->
<tx:annotation-driven transaction-manager="transactionManager" />
</beans>
在需要进行事务声明的方法上用@Transactional注解
##2.3 Web层实现
- 整合SpringMVC
配置web.xml
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1"
metadata-complete="true">
<!-- 修改servlet版本为3.1 -->
<!-- 配置DispatcherServlet-->
<servlet>
<servlet-name>seckill-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 配置SpringMVC需要加载的配置文件
Spring-dao.xml, spring-service.xml, spring-web.xml
MyBatis -> Spring -> SpringMVC
-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/spring-*.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>seckill-dispatcher</servlet-name>
<!-- 默认匹配所有的请求-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
resources/spring下创建spring-web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- 配置SpringMVC-->
<!-- 1.开启SpringMVC注解模式-->
<!-- 简化配置
1)自动注册DefaultAnnotationHandlerMapping, AnnotationMethodHandlerAdapter
2)提供一系列功能:数据绑定,数字和日期的format @NumberFormat,@DateTimeFormat,xml, json默认读写支持。
-->
<mvc:annotation-driven />
<!-- 2.静态资源默认servlet配置
1)加入对静态资源的处理:js,gif,png
2)允许使用 "/" 做整体映射
-->
<mvc:default-servlet-handler />
<!-- 3.配置jsp 显示ViewResolver-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
<!-- 4.扫描web相关的bean-->
<context:component-scan base-package="com.seckill.web" />
</beans>
-
详细页流程逻辑
-
接口设计
秒杀功能的流程:秒杀接口暴露 -> 执行秒杀 -> 相关查询,秒杀API的URL设计如下:
##2.4 前端页面
- 引入Bootstrap
通过cdn的方式引入Bootstrap相关的文件
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
- 倒计时插件
<!-- jQuery countDown倒计时插件-->
<script src="https://cdn.bootcss.com/jquery.countdown/2.2.0/jquery.countdown.js"></script>
- cookie插件
<!-- jQuery cookie插件-->
<script src="https://cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.js"></script>
#3.系统演示
-
秒杀列表页面
-
输入手机号
系统没有做登录页面,此处使用本地cookie作为替代方案。如果cookie中没有手机号,则在弹出页面填写正确手机号就可以进入秒杀页面。
-
秒杀成功页面
-
秒杀未开始页面
秒杀还未开始时通过插件显示倒计时,倒计时时间以服务器时间为准。
#3.资源地址
- 慕课网视频地址
-
github
秒杀系统代码 -
技术框架官网地址
为什么要从官网获取资源?
1.官网的文档最新最权威
2.可以避免文档过时导致的错误问题
| 名称 | 地址 |
| :-------------|:-------------|
| Spring |https://docs.spring.io/spring/docs/
| MyBatis |http://mybatis.github.io/mybatis-3/zh/index.html |
| logback |http://logback.qos.ch/manual/configuration.html |