SpringBoot構建電商基礎秒殺項目vue
視頻地址 https://www.imooc.com/video/18332java
maven-archetype-quickstartgit
不用springboot能夠說使用maven-archetype-webapp,生成項目能夠打包成war發佈到容器github
vuejs版本 https://gitee.com/349032805/miaosha-allweb
https://gitee.com/robei/miaosha https://github.com/hongjun500/miaoshaspring
spring官方rest例子 https://spring.io/guides/gs/rest-service/數據庫
resources目錄下application.properties
server.port=8080springboot
dependency:
數據庫驅動 數據庫鏈接池 如druidmybatis
com.alibaba
druidapp
org.mybatis.spring.boot
mybatis-spring-boot-starter
配置文件
mybatis.mapperLocations=classpath:mapping/*.xml spring.datasource.name= spring.dataourse.url= spring.datasource.username= spring.datasource.password=
spring.datasource.type=com.alibaba.druid.poll.DruidDataSource spring.datasource.driverClassName=
mapping建立在resources目錄下
@MapperScan("com.xxxx.xxx")
mybatis-generator.xml
register_mode 註冊方式 thrid_party_id 第三方id 密碼跟用戶主表分開存取
service下model目錄
controller下建立viewobject目錄
BeanUtils.copyProperties(source, targert)
通用返回對象 error目錄 enum EmBusinessError implements CommonError // 通用錯誤類型00001 PARAMETER_VALIDATION_ERROR(00001, "參數不合法") USER_NOT_EXIST(10001, 「用戶不存在」); int errCode String errMsg
joda-time jar包
class PromoModel Integer id // 1 未開始 2 進行中 3 已結束 Integer status // 秒殺活動名 String promoName DateTime startDate DateTime endDate Integer itemId // 秒殺活動商品價格 BigDecimal promoItemPrice