SpringBoot構建電商基礎秒殺項目 - 筆記

SpringBoot構建電商基礎秒殺項目vue

視頻地址 https://www.imooc.com/video/18332java

springboot項目搭建

建立Maven項目

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

整合Mybatis

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自動生成器插件

mybatis-generator.xml

數據庫設計

register_mode 註冊方式 thrid_party_id 第三方id 密碼跟用戶主表分開存取

使用SpringMVC開發用戶信息

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
相關文章
相關標籤/搜索