Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!

idea (37) 2023-03-24 22:20

大家好,我是编程小6,很高兴遇见你,有问题可以及时留言哦。

去年12月的时候,mall项目正式发布,作为Github上面最火的SpringBoot实战电商项目,累计获得了25000+Star。今年还是12月,mall项目微服务版本mall-swarm正式发布,文档齐全,附带全套SpringCloud教程。

项目介绍

mall-swarm是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。

系统架构图

Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第1张

组织结构

mall
├── mall-common -- 工具类及通用代码模块
├── mall-mbg -- MyBatisGenerator生成的数据库操作代码模块
├── mall-security -- 封装SpringSecurity+JWT的安全认证的模块
├── mall-registry -- 基于Eureka的微服务注册中心
├── mall-config -- 基于Spring Cloud Config的微服务配置中心
├── mall-gateway -- 基于Spring Cloud Gateway的微服务API网关服务
├── mall-monitor -- 基于Spring Boot Admin的微服务监控中心
├── mall-admin -- 后台管理系统服务
├── mall-search -- 基于Elasticsearch的商品搜索系统服务
├── mall-portal -- 移动端商城系统服务
└── mall-demo -- 微服务远程调用测试服务

项目文档

  • 项目文档mall系列教程:www.macrozheng.com
  • 配套Spring Cloud系列教程:github.com/macrozheng/…

项目演示

  • 后台管理系统: www.macrozheng.com/admin/index…
  • 移动端商城系统:www.macrozheng.com/app/index.h…

技术选型

后端技术

技术 说明
Spring Cloud 微服务框架
Spring Boot 容器+MVC框架
Spring Security 认证和授权框架
MyBatis ORM框架
MyBatisGenerator 数据层代码生成
PageHelper MyBatis物理分页插件
Swagger-UI 文档生产工具
Elasticsearch 搜索引擎
RabbitMq 消息队列
Redis 分布式缓存
MongoDb NoSql数据库
Docker 应用容器引擎
Druid 数据库连接池
OSS 对象存储
JWT JWT登录支持
LogStash 日志收集
Lombok 简化对象封装工具
Seata 全局事务管理框架

前端技术

技术 说明
Vue 前端框架
Vue-router 路由框架
Vuex 全局状态管理框架
Element 前端UI框架
Axios 前端HTTP框架
v-charts 基于Echarts的图表框架

环境搭建

开发环境搭建

mall-swarm中使用到的环境和mall项目中大致相同,具体可以查看mall在Windows环境下的部署。

简易环境搭建流程:

  • 安装IDEA并导入项目源码;
  • 安装MySql,创建一个mall数据库,并导入/document/sql/mall.sql文件;
  • 安装Redis、Elasticsearch、MongoDB、RabbitMQ等环境。

项目部署

mall-swarm项目启动有先后顺序,大家要按照以下顺序启动。

启动注册中心mall-registry

  • 直接运行com.macro.mall.MallRegistryApplication的main函数即可;
  • 运行完成后可以通过注册中心控制台查看:http://localhost:8001

启动配置中心mall-config

  • 直接运行com.macro.mall.MallConfigApplication的main函数即可;
  • 访问以下接口获取mall-admin在dev环境下的配置信息:http://localhost:8301/master/admin-dev.yml

启动监控中心mall-monitor

  • 直接运行com.macro.mall.MallMonitorApplication的main函数即可;
  • 运行完成后可以通过监控中心控制台查看:http://localhost:8101
  • 输入账号密码macro:123456可以登录查看。

启动网关服务mall-gateway

  • 直接运行com.macro.mall.MallGatewayApplication的main函数即可;
  • 访问以下接口获取动态路由规则:http://localhost:8201/actuator/gateway/routes

启动后台管理服务mall-admin

  • 直接运行com.macro.mall.MallAdminApplication的main函数即可;
  • 通过mall-gateway网关服务访问接口文档:http://localhost:8201/mall-admin/swagger-ui.html
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第2张

  • 登录接口地址:http://localhost:8201/mall-admin/admin/login
  • 访问登录接口获取到token后放入认证的头信息即可正常访问其他需要登录的接口:
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第3张

启动前台服务mall-portal

  • 直接运行com.macro.mall.portal.MallPortalApplication的main函数即可;
  • 通过mall-gateway网关服务访问接口文档:http://localhost:8201/mall-portal/swagger-ui.html
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第4张

  • 登录接口地址:http://localhost:8201/mall-portal/sso/login
  • 调用需要登录的接口方式同mall-admin

启动搜索服务mall-search

  • 直接运行com.macro.mall.search.MallSearchApplication的main函数即可;
  • 通过mall-gateway网关服务访问接口文档:http://localhost:8201/mall-search/swagger-ui.html
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第5张

启动测试服务mall-demo

  • 直接运行com.macro.mall.MallAdminApplication的main函数即可;
  • 通过mall-gateway网关服务访问接口文档:http://localhost:8201/mall-demo/swagger-ui.html
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第6张

  • 可以通过调用FeignAdminController、FeignPortalController、FeignSearchController来测试使用Feign的远程调用功能。

效果展示

  • 注册中心服务信息:
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第7张

  • 监控中心服务概览信息:
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第8张

Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第9张

  • 监控中心单应用详情信息:
Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第10张

Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第11张

扩展解决方案

  • 如果想使用Consul作为注册及配置中心的话请参考:Spring Cloud Consul:服务治理与配置中心
  • 如果想使用Nacos作为注册及配置中心的话请参考:Spring Cloud Alibaba:Nacos 作为注册中心和配置中心使用
  • 分布式事务解决方案请参考:使用Seata彻底解决Spring Cloud中的分布式事务问题!
  • ELK日志收集系统的搭建请参考:SpringBoot应用整合ELK实现日志收集。

项目地址

开源不易,觉得本项目有帮助的朋友可以点个Star支持下!

github.com/macrozheng/…

公众号

mall项目全套学习教程连载中,关注公众号第一时间获取。

Github标星25K+Star,SpringBoot实战电商项目mall出SpringCloud版本啦!_https://bianchenghao6.com/blog_idea_第12张

发表回复