Skip to content

QH946/qhmall

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

项目学习资源

项目介绍

清欢商城项目是一套电商项目,包括前台商城系统以及后台管理系统,基于 SpringCloud、SpringCloud Alibaba、MyBatis Plus实现。前台商城系统包括:用户登录、注册、商品搜索、商品详情、购物车、订单、秒杀活动等模块。后台管理系统包括:系统管理、商品系统、优惠营销、库存系统、订单系统、用户系统、内容管理等七大模块。

项目演示

前台商品系统

首页

商品检索

认证

商品详情

购物车

结算页

支付

后台管理系统

登录

商品系统

分类管理

品牌管理

平台属性

商品管理

发布商品

其他系统

组织结构

qhmall
├── qhmall-common -- 工具类及通用代码
├── renren-generator -- 人人开源项目的代码生成器
├── qhmall-auth-server -- 认证中心(社交登录、OAuth2.0)
├── qhmall-cart -- 购物车服务
├── qhmall-coupon -- 优惠卷服务
├── qhmall-gateway -- 统一配置网关
├── qhmall-order -- 订单服务
├── qhmall-product -- 商品服务
├── qhmall-search -- 检索服务
├── qhmall-seckill -- 秒杀服务
├── qhmall-third-party -- 第三方服务(对象存储、短信)
├── qhmall-ware -- 仓储服务
├── qhmall-backend -- 后台管理服务
└── qhmall-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

架构图

系统架构图

img

业务架构图

img

环境搭建

开发工具

工具 说明 官网
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 8.0.28 https://www.mysql.com/
Redis 7.0.5 https://redis.io/download
Elasticsearch 7.4.2 https://www.elastic.co/downloads
Kibana 7.4.2 https://www.elastic.co/cn/kibana
RabbitMQ management http://www.rabbitmq.com/download.html
Nginx 1.1.0 http://nginx.org/en/download.html
Nacos 2.1.1 https://nacos.io/zh-cn/index.html

注意:以上的除了jdk都是采用docker方式进行安装,详细安装步骤可参考百度!!!

搭建步骤

Windows环境部署

  • 修改本机的host文件,映射域名端口至Nginx地址
192.168.174.130 qhmall.com
192.168.174.130 search.qhmall.com
192.168.174.130 item.qhmall.com
192.168.174.130 auth.qhmall.com
192.168.174.130 cart.qhmall.com
192.168.174.130 order.qhmall.com
192.168.174.130 member.qhmall.com
192.168.174.130 seckill.qhmall.com

以上ip换成自己Linux的ip地址
  • 修改Linux中Nginx的配置文件
1、在nginx.conf中添加负载均衡的配置   
cmd中ipconfig查询本机网关地址/查询部署网关的服务器所在的地址
在nginx.conf中添加
  #gzip  on;
    upstream qhmall{
      server 192.168.203.1:88;
    }

2、覆盖qhmall.conf配置
    server {
    # 监听以下域名地址的80端口
    listen       80;
    server_name  qhmall.com  *.qhmall.com;

    #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.qhmall.com;
       proxy_pass http://qhmall;
    }

    location / {
        proxy_set_header Host $host;   #不让请求头丢失
        proxy_pass http://qhmall;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

或者直接用项目nginx模块替换本机nginx配置目录文件

  • 前端服务 qhmall-backendnpm install npm run dev 方式去运行
  • 克隆整个后端项目 qhmall ,并导入 IDEA 中完成编译

About

清欢商城,项目原型为谷粒商城

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published