Initial commit
3
.gitattributes
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*.js linguist-language=java
|
||||
*.css linguist-language=java
|
||||
*.html linguist-language=java
|
||||
245
README.md
Normal file
@@ -0,0 +1,245 @@
|
||||
# 谷粒商城
|
||||
|
||||

|
||||
|
||||
谷粒商城项目致力于打造一个完整的大型分布式架构电商平台,采用现阶段流行技术来实现,采用前后端分离编写。
|
||||
|
||||
## 项目学习资源
|
||||
|
||||
- 项目文档
|
||||
|
||||
[分布式基础篇](docs/谷粒商城—分布式基础.md)
|
||||
|
||||
[分布式高级篇](docs/谷粒商城—分布式高级.md)
|
||||
|
||||
- 接口文档:https://easydoc.xyz/s/78237135/ZUqEdvA4/hKJTcbfd
|
||||
|
||||
- 视频链接:https://www.bilibili.com/video/BV1np4y1C7Yf?from=search&seid=8989733132604162058
|
||||
|
||||
## 项目介绍
|
||||
|
||||
谷粒商城项目是一套电商项目,包括前台商城系统以及后台管理系统,基于 SpringCloud、SpringCloud Alibaba、MyBatis Plus实现。前台商城系统包括:用户登录、注册、商品搜索、商品详情、购物车、订单、秒杀活动等模块。后台管理系统包括:系统管理、商品系统、优惠营销、库存系统、订单系统、用户系统、内容管理等七大模块。
|
||||
|
||||
## 项目演示
|
||||
|
||||
### 前台商品系统
|
||||
|
||||
#### 首页
|
||||
|
||||

|
||||
|
||||
#### 商品检索
|
||||
|
||||

|
||||
|
||||
#### 认证
|
||||
|
||||

|
||||
|
||||
<img src="https://i.loli.net/2021/02/18/OIt4FbsUwqV8gZL.png" style="zoom:38%;" />
|
||||
|
||||
#### 商品详情
|
||||
|
||||

|
||||
|
||||
#### 购物车
|
||||
|
||||

|
||||
|
||||
#### 结算页
|
||||
|
||||
#### 支付
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
### 后台管理系统
|
||||
|
||||
#### 登录
|
||||
|
||||

|
||||
|
||||
#### 商品系统
|
||||
|
||||
**分类管理**
|
||||
|
||||

|
||||
|
||||
**品牌管理**
|
||||
|
||||
**平台属性**
|
||||
|
||||

|
||||
|
||||
**商品管理**
|
||||
|
||||

|
||||
|
||||
**发布商品**
|
||||
|
||||

|
||||
|
||||
#### 其他系统
|
||||
|
||||
<div>
|
||||
<img src="docs/images/Snipaste_2021-02-18_16-58-44.png" style="zoom:40%;" />
|
||||
<img src="docs/images/Snipaste_2021-02-18_16-47-40.png" style="zoom:40%;" />
|
||||
<img src="docs/images/Snipaste_2021-02-18_16-57-06.png" style="zoom:50%;" />
|
||||
<img src="docs/images/Snipaste_2021-02-18_16-57-43.png" style="zoom:50%;" />
|
||||
<img src="docs/images/Snipaste_2021-02-18_16-57-58.png" style="zoom:50%;" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
## 组织结构
|
||||
|
||||
```
|
||||
gulimall
|
||||
├── gulimall-common -- 工具类及通用代码
|
||||
├── renren-generator -- 人人开源项目的代码生成器
|
||||
├── gulimall-auth-server -- 认证中心(社交登录、OAuth2.0)
|
||||
├── gulimall-cart -- 购物车服务
|
||||
├── gulimall-coupon -- 优惠卷服务
|
||||
├── gulimall-gateway -- 统一配置网关
|
||||
├── gulimall-order -- 订单服务
|
||||
├── gulimall-product -- 商品服务
|
||||
├── gulimall-search -- 检索服务
|
||||
├── gulimall-seckill -- 秒杀服务
|
||||
├── gulimall-third-party -- 第三方服务(对象存储、短信)
|
||||
├── gulimall-ware -- 仓储服务
|
||||
└── gulimall-member -- 会员服务
|
||||
```
|
||||
|
||||
## 技术选型
|
||||
|
||||
### 后端技术
|
||||
|
||||
| 技术 | 说明 | 官网 |
|
||||
| :----------------: | :----------------------: | :---------------------------------------------: |
|
||||
| SpringBoot | 容器+MVC框架 | https://spring.io/projects/spring-boot |
|
||||
| SpringCloud | 微服务架构 | https://spring.io/projects/spring-cloud |
|
||||
| SpringCloudAlibaba | 一系列组件 | https://spring.io/projects/spring-cloud-alibaba |
|
||||
| MyBatis-Plus | ORM框架 | https://mp.baomidou.com |
|
||||
| renren-generator | 人人开源项目的代码生成器 | https://gitee.com/renrenio/renren-generator |
|
||||
| Elasticsearch | 搜索引擎 | https://github.com/elastic/elasticsearch |
|
||||
| RabbitMQ | 消息队列 | https://www.rabbitmq.com |
|
||||
| Springsession | 分布式缓存 | https://projects.spring.io/spring-session |
|
||||
| Redisson | 分布式锁 | https://github.com/redisson/redisson |
|
||||
| Docker | 应用容器引擎 | https://www.docker.com |
|
||||
| OSS | 对象云存储 | https://github.com/aliyun/aliyun-oss-java-sdk |
|
||||
|
||||
### 前端技术
|
||||
|
||||
| 技术 | 说明 | 官网 |
|
||||
| :-------: | :--------: | :-----------------------: |
|
||||
| Vue | 前端框架 | https://vuejs.org |
|
||||
| Element | 前端UI框架 | https://element.eleme.io |
|
||||
| thymeleaf | 模板引擎 | https://www.thymeleaf.org |
|
||||
| node.js | 服务端的js | https://nodejs.org/en |
|
||||
|
||||
## 架构图
|
||||
|
||||
### 系统架构图
|
||||
|
||||

|
||||
|
||||
### 业务架构图
|
||||
|
||||

|
||||
|
||||
## 环境搭建
|
||||
|
||||
### 开发工具
|
||||
|
||||
| 工具 | 说明 | 官网 |
|
||||
| :-----------: | :-----------------: | :---------------------------------------------: |
|
||||
| IDEA | 开发Java程序 | https://www.jetbrains.com/idea/download |
|
||||
| RedisDesktop | redis客户端连接工具 | https://redisdesktop.com/download |
|
||||
| SwitchHosts | 本地host管理 | https://oldj.github.io/SwitchHosts |
|
||||
| X-shell | Linux远程连接工具 | http://www.netsarang.com/download/software.html |
|
||||
| Navicat | 数据库连接工具 | http://www.formysql.com/xiazai.html |
|
||||
| PowerDesigner | 数据库设计工具 | http://powerdesigner.de |
|
||||
| Postman | API接口调试工具 | https://www.postman.com |
|
||||
| Jmeter | 性能压测工具 | https://jmeter.apache.org |
|
||||
| Typora | Markdown编辑器 | https://typora.io |
|
||||
|
||||
### 开发环境
|
||||
|
||||
| 工具 | 版本号 | 下载 |
|
||||
| :-----------: | :----: | :----------------------------------------------------------: |
|
||||
| JDK | 1.8 | https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html |
|
||||
| Mysql | 5.7 | https://www.mysql.com |
|
||||
| Redis | Redis | https://redis.io/download |
|
||||
| Elasticsearch | 7.6.2 | https://www.elastic.co/downloads |
|
||||
| Kibana | 7.6.2 | https://www.elastic.co/cn/kibana |
|
||||
| RabbitMQ | 3.8.5 | http://www.rabbitmq.com/download.html |
|
||||
| Nginx | 1.1.6 | http://nginx.org/en/download.html |
|
||||
|
||||
注意:以上的除了jdk都是采用docker方式进行安装,详细安装步骤可参考百度!!!
|
||||
|
||||
### 搭建步骤
|
||||
|
||||
> Windows环境部署
|
||||
|
||||
- 修改本机的host文件,映射域名端口至Nginx地址
|
||||
|
||||
```
|
||||
192.168.56.102 gulimall.com
|
||||
192.168.56.102 search.gulimall.com
|
||||
192.168.56.102 item.gulimall.com
|
||||
192.168.56.102 auth.gulimall.com
|
||||
192.168.56.102 cart.gulimall.com
|
||||
192.168.56.102 order.gulimall.com
|
||||
192.168.56.102 member.gulimall.com
|
||||
192.168.56.102 seckill.gulimall.com
|
||||
以上ip换成自己Linux的ip地址
|
||||
```
|
||||
|
||||
- 修改Linux中Nginx的配置文件
|
||||
|
||||
```shell
|
||||
1、在nginx.conf中添加负载均衡的配置
|
||||
upstream gulimall{
|
||||
# 网关的地址
|
||||
server 192.168.56.1:88;
|
||||
}
|
||||
2、在gulimall.conf中添加如下配置
|
||||
server {
|
||||
# 监听以下域名地址的80端口
|
||||
listen 80;
|
||||
server_name gulimall.com *.gulimall.com hjl.mynatapp.cc;
|
||||
|
||||
#charset koi8-r;
|
||||
#access_log /var/log/nginx/log/host.access.log main;
|
||||
|
||||
#配置静态资源分离
|
||||
location /static/ {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
|
||||
#支付异步回调的一个配置
|
||||
location /payed/ {
|
||||
proxy_set_header Host order.gulimall.com; #不让请求头丢失
|
||||
proxy_pass http://gulimall;
|
||||
}
|
||||
|
||||
location / {
|
||||
#root /usr/share/nginx/html;
|
||||
#index index.html index.htm;
|
||||
proxy_set_header Host $host; #不让请求头丢失
|
||||
proxy_pass http://gulimall;
|
||||
}
|
||||
```
|
||||
|
||||
或者直接用项目nginx模块替换本机nginx配置目录文件
|
||||
|
||||
- 克隆前端项目 `renren-fast-vue` 以 `npm run dev` 方式去运行
|
||||
- 克隆整个后端项目 `gulimall` ,并导入 IDEA 中完成编译
|
||||
|
||||
|
||||
|
||||
BIN
docs/images/1587609877028.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
docs/images/1587616296253.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
docs/images/1587637858665.png
Normal file
|
After Width: | Height: | Size: 384 KiB |
BIN
docs/images/1587638853416.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
docs/images/1587638968519.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
docs/images/1587657745923.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/images/1587657812283.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
docs/images/1587694451601.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/images/1587701348764.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
docs/images/1587701521184.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
docs/images/1587701587456.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
docs/images/1587716583668.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
docs/images/1587716911435.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/images/1587717125580.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/images/1587718802109.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
docs/images/1587718889316.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/images/1587719108947.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
docs/images/1587720311349.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
docs/images/1587720714101.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
docs/images/1587720883244.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
docs/images/1587720963699.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/images/1587721184218.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
docs/images/1587721616021.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
docs/images/1587721844449.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
docs/images/1587722710432.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
docs/images/1587722798375.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
docs/images/1587722998265.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
docs/images/1587724212905.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
docs/images/1587724350548.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
docs/images/1587729576178.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
docs/images/1587730035866.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
docs/images/1587746815353.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/images/1587747283279.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/images/1587748494597.png
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
docs/images/1588730028929.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/images/1588732021702.png
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
docs/images/1588732152646.png
Normal file
|
After Width: | Height: | Size: 483 KiB |
BIN
docs/images/1588766303205.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
docs/images/1588780868214.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
docs/images/1588822997675.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
docs/images/Snipaste_2020-07-31_15-16-23.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
docs/images/Snipaste_2020-08-01_11-06-13.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
docs/images/Snipaste_2020-08-01_11-09-17.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
docs/images/Snipaste_2020-08-09_21-23-53.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/images/Snipaste_2020-08-09_21-24-43.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/images/Snipaste_2020-08-09_21-25-47.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
docs/images/Snipaste_2020-08-29_12-59-49.png
Normal file
|
After Width: | Height: | Size: 898 KiB |
BIN
docs/images/Snipaste_2020-08-30_11-32-42.png
Normal file
|
After Width: | Height: | Size: 524 KiB |
BIN
docs/images/Snipaste_2020-09-05_20-29-23.png
Normal file
|
After Width: | Height: | Size: 890 KiB |
BIN
docs/images/Snipaste_2020-09-05_20-59-48.png
Normal file
|
After Width: | Height: | Size: 621 KiB |
BIN
docs/images/Snipaste_2020-09-05_21-01-38.png
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
docs/images/Snipaste_2020-09-05_21-03-38.png
Normal file
|
After Width: | Height: | Size: 267 KiB |
BIN
docs/images/Snipaste_2020-09-06_13-43-18.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
docs/images/Snipaste_2020-09-06_15-48-10.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
docs/images/Snipaste_2020-09-06_20-31-17.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
docs/images/Snipaste_2020-09-06_20-36-46.png
Normal file
|
After Width: | Height: | Size: 262 KiB |
BIN
docs/images/Snipaste_2020-09-06_20-38-59.png
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
docs/images/Snipaste_2020-09-06_23-44-20.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/images/Snipaste_2020-09-06_23-54-28.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
docs/images/Snipaste_2020-09-07_17-23-41.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
docs/images/Snipaste_2020-09-07_18-02-36.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
docs/images/Snipaste_2020-09-07_18-03-17.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
docs/images/Snipaste_2020-09-08_18-51-36.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
docs/images/Snipaste_2020-09-08_18-56-06.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
docs/images/Snipaste_2020-09-08_19-03-23.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
docs/images/Snipaste_2020-09-08_19-20-43.png
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
docs/images/Snipaste_2020-09-08_19-35-01.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
docs/images/Snipaste_2020-09-08_23-12-43.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/images/Snipaste_2020-09-08_23-16-35.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
docs/images/Snipaste_2020-09-09_12-53-21.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
docs/images/Snipaste_2020-09-09_13-11-45.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
docs/images/Snipaste_2020-09-10_18-29-41.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
docs/images/Snipaste_2020-09-10_18-31-38.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
docs/images/Snipaste_2020-09-10_18-33-47.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
docs/images/Snipaste_2020-09-10_18-34-56.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
docs/images/Snipaste_2020-09-10_19-40-20.png
Normal file
|
After Width: | Height: | Size: 363 KiB |
BIN
docs/images/Snipaste_2020-09-10_20-03-46.png
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
docs/images/Snipaste_2020-09-10_20-05-15.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
docs/images/Snipaste_2020-09-10_20-06-15.png
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
docs/images/Snipaste_2020-09-18_12-47-55.png
Normal file
|
After Width: | Height: | Size: 101 KiB |
BIN
docs/images/Snipaste_2020-09-18_12-58-36.png
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
docs/images/Snipaste_2020-09-18_12-59-17.png
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
docs/images/Snipaste_2020-09-18_12-59-52.png
Normal file
|
After Width: | Height: | Size: 203 KiB |
BIN
docs/images/Snipaste_2020-09-19_19-43-21.png
Normal file
|
After Width: | Height: | Size: 996 KiB |
BIN
docs/images/Snipaste_2020-09-19_19-52-21.png
Normal file
|
After Width: | Height: | Size: 329 KiB |
BIN
docs/images/Snipaste_2020-09-19_19-53-40.png
Normal file
|
After Width: | Height: | Size: 849 KiB |
BIN
docs/images/Snipaste_2020-09-19_20-02-47.png
Normal file
|
After Width: | Height: | Size: 321 KiB |
BIN
docs/images/Snipaste_2020-09-19_20-12-45.png
Normal file
|
After Width: | Height: | Size: 414 KiB |
BIN
docs/images/Snipaste_2020-09-20_23-51-05.png
Normal file
|
After Width: | Height: | Size: 610 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-07-08.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-08-20.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-11-39.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-24-35.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-26-17.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-26-48.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-27-51.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
docs/images/Snipaste_2020-09-21_00-29-01.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
docs/images/Snipaste_2020-09-22_19-13-55.png
Normal file
|
After Width: | Height: | Size: 13 KiB |