Spring Boot 和 Spring Cloud 构建一个完整的微服务架构——在线购物系统

接上一篇博客,大家可以结合一起看看实例理解https://blog.csdn.net/speaking_me/article/details/143917383?spm=1001.2014.3001.5502

构建一个综合性的大型微服务项目可以帮助开发者更全面地理解和掌握 Spring Boot 和 Spring Cloud 的应用。

接下来,我将通过一个具体的例子——一个在线购物系统,来展示如何使用 Spring Boot 和 Spring Cloud 构建一个完整的微服务架构。

在线购物系统案例

1. 项目概述

该项目将模拟一个完整的在线购物系统,包括以下几个主要模块:

  • 用户服务(User Service)
  • 商品服务(Product Service)
  • 订单服务(Order Service)
  • 认证和授权服务(Auth Service)
  • 配置中心(Config Server)
  • 服务发现(Eureka Server)
  • API 网关(Gateway Service)
  • 链路追踪(Zipkin)
  • 配置管理(Config Server)
  • 断路器(Hystrix)
2. 技术栈
  • Spring Boot: 用于快速构建各个微服务。
  • Spring Cloud: 提供微服务基础设施支持。
  • MySQL: 数据库存储。
  • Eureka: 服务发现。
  • Config Server: 集中配置管理。
  • Hystrix: 断路器。
  • Zipkin: 链路追踪。
  • Spring Cloud Gateway: API 网关。
  • RabbitMQ: 消息队列。
3. 项目结构
online-shopping-system
├── auth-service
├── config-server
├── eureka-server
├── gateway-service
├── order-service
├── product-service
├── user-service
├── zipkin-server
└── pom.xml
4. 模块详解
4.1 Eureka Server

功能: 服务发现和注册中心。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Cloud Starter Netflix Eureka Server
  2. 修改 pom.xml 文件,添加 Spring Cloud 版本管理:

    <dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>Hoxton.SR12</version><type>pom</type><scope>import</scope></dependency></dependencies>
    </dependencyManagement>
  3. 在主类中添加 @EnableEurekaServer 注解:

    package com.example.eurekaserver;import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;@SpringBootApplication
    @EnableEurekaServer
    public class EurekaServerApplication {public static void main(String[] args) {SpringApplication.run(EurekaServerApplication.class, args);}
    }
  4. application.properties 文件中配置 Eureka 服务注册中心:

    server.port=8761
    eureka.client.register-with-eureka=false
    eureka.client.fetch-registry=false
4.2 Config Server

功能: 集中配置管理。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Cloud Config Server
  2. 在主类中添加 @EnableConfigServer 注解:

    package com.example.configserver;import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.config.server.EnableConfigServer;@SpringBootApplication
    @EnableConfigServer
    public class ConfigServerApplication {public static void main(String[] args) {SpringApplication.run(ConfigServerApplication.class, args);}
    }
  3. application.properties 文件中配置 Config Server:

    server.port=8888
    spring.profiles.active=native
    spring.cloud.config.server.native.search-locations=file:/config-repo/
4.3 User Service

功能: 用户管理服务,包括用户注册、登录等功能。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Data JPA
    • Spring Security
    • Spring Cloud Starter Netflix Eureka Client
    • Spring Cloud Starter Config
  2. application.properties 文件中配置 Eureka 客户端和 Config Client:

    spring.application.name=user-service
    eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
    spring.cloud.config.uri=http://localhost:8888
  3. 创建用户实体、仓库、服务和控制器,类似于前面的用户管理服务示例。

4.4 Product Service

功能: 商品管理服务,包括商品列表、详情等功能。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Data JPA
    • Spring Cloud Starter Netflix Eureka Client
    • Spring Cloud Starter Config
  2. application.properties 文件中配置 Eureka 客户端和 Config Client:

    spring.application.name=product-service
    eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
    spring.cloud.config.uri=http://localhost:8888
  3. 创建商品实体、仓库、服务和控制器。

4.5 Order Service

功能: 订单管理服务,包括下单、查看订单等功能。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Data JPA
    • Spring Cloud Starter Netflix Eureka Client
    • Spring Cloud Starter Config
    • Spring Cloud Starter OpenFeign
    • Spring Cloud Starter Netflix Hystrix
  2. application.properties 文件中配置 Eureka 客户端和 Config Client:

    spring.application.name=order-service
    eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
    spring.cloud.config.uri=http://localhost:8888
  3. 创建订单实体、仓库、服务和控制器。

  4. 使用 Feign 客户端调用其他服务(如用户服务和商品服务)。

  5. 使用 Hystrix 实现断路器。

4.6 Auth Service

功能: 认证和授权服务,提供用户认证和授权功能。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Security
    • Spring Cloud Starter Netflix Eureka Client
    • Spring Cloud Starter Config
  2. application.properties 文件中配置 Eureka 客户端和 Config Client:

    spring.application.name=auth-service
    eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
    spring.cloud.config.uri=http://localhost:8888
  3. 配置 Spring Security,实现 JWT 认证和授权。

4.7 Gateway Service

功能: API 网关,统一管理微服务之间的交互。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Cloud Gateway
    • Spring Cloud Starter Netflix Eureka Discovery
  2. 在主类中添加 @EnableDiscoveryClient 注解:

    package com.example.gateway;import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.EnableDiscoveryClient;@SpringBootApplication
    @EnableDiscoveryClient
    public class GatewayApplication {public static void main(String[] args) {SpringApplication.run(GatewayApplication.class, args);}
    }
  3. application.properties 文件中配置 Gateway:

    server.port=8080
    spring.application.name=gateway-service
    eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
    spring.cloud.gateway.routes[0].id=user-service
    spring.cloud.gateway.routes[0].uri=lb://user-service
    spring.cloud.gateway.routes[0].predicates[0]=Path=/users/**
    spring.cloud.gateway.routes[1].id=product-service
    spring.cloud.gateway.routes[1].uri=lb://product-service
    spring.cloud.gateway.routes[1].predicates[0]=Path=/products/**
    spring.cloud.gateway.routes[2].id=order-service
    spring.cloud.gateway.routes[2].uri=lb://order-service
    spring.cloud.gateway.routes[2].predicates[0]=Path=/orders/**
4.8 Zipkin Server

功能: 链路追踪,帮助定位和分析问题。

创建步骤:

  1. 创建一个新的 Spring Boot 项目,选择以下依赖:

    • Spring Web
    • Spring Cloud Sleuth
    • Spring Cloud Starter Zipkin
  2. 在主类中添加 @EnableZipkinServer 注解:

    package com.example.zipkin;import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.sleuth.zipkin.stream.EnableZipkinStreamServer;@SpringBootApplication
    @EnableZipkinStreamServer
    public class ZipkinServerApplication {public static void main(String[] args) {SpringApplication.run(ZipkinServerApplication.class, args);}
    }
  3. application.properties 文件中配置 Zipkin:

    server.port=9411
    spring.zipkin.stream.enabled=true
    spring.zipkin.stream.binders.rabbit.type=input
    spring.rabbitmq.host=localhost
    spring.rabbitmq.port=5672
    spring.rabbitmq.username=guest
    spring.rabbitmq.password=guest
5. 运行和测试
  1. 启动 Eureka Server:

    cd eureka-server
    ./mvnw spring-boot:run
  2. 启动 Config Server:

    cd config-server
    ./mvnw spring-boot:run
  3. 启动 Zipkin Server:

    cd zipkin-server
    ./mvnw spring-boot:run
  4. 启动各个微服务:

    cd user-service
    ./mvnw spring-boot:runcd product-service
    ./mvnw spring-boot:runcd order-service
    ./mvnw spring-boot:runcd auth-service
    ./mvnw spring-boot:runcd gateway-service
    ./mvnw spring-boot:run
  5. 测试 API:

    • 使用 Postman 或 curl 测试各个服务的 API。
    • 访问 http://localhost:8080/users 查看用户列表。
    • 访问 http://localhost:8080/products 查看商品列表。
    • 访问 http://localhost:8080/orders 查看订单列表。
6. 总结

通过上述步骤,我们构建了一个完整的在线购物系统,涵盖了用户管理、商品管理、订单管理、认证和授权、配置管理、服务发现、API 网关、链路追踪等各个方面。这个项目不仅展示了如何使用 Spring Boot 和 Spring Cloud 构建微服务,还展示了如何管理和维护一个复杂的微服务架构。

希望这个综合性的案例能够帮助你更好地理解和应用 Spring Boot 和 Spring Cloud 构建微服务架构。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/61256.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Flutter:AnimatedPadding动态修改padding

// 默认top为10&#xff0c;点击后修改为100&#xff0c;此时方块会向下移动 padding: EdgeInsets.fromLTRB(left, top, right, bottom),class _MyHomePageState extends State<MyHomePage> {bool flag true;overrideWidget build(BuildContext context) {return Scaffo…

【c++丨STL】stack和queue的使用及模拟实现

&#x1f31f;&#x1f31f;作者主页&#xff1a;ephemerals__ &#x1f31f;&#x1f31f;所属专栏&#xff1a;C、STL 目录 前言 一、什么是容器适配器 二、stack的使用及模拟实现 1. stack的使用 empty size top push和pop swap 2. stack的模拟实现 三、queue的…

JavaEE初学07

JavaEE初学07 MybatisORMMybatis一对一结果映射一对多结果映射 Mybatis动态sqlif标签trim标签where标签set标签foreach标签补充 在这里插入图片描述右击运行即可 ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/c71d44d027374a399d5d537ce96f00e1.png) Mybatis Myba…

《Spring Cloud 微服务架构探秘》

一、Spring Cloud 微服务架构概述 Spring Cloud 是基于 Spring Boot 构建的微服务开发框架&#xff0c;它充分利用了 Spring Boot 的便利性&#xff0c;极大地简化了分布式系统基础设施的开发。 Spring Cloud 具有诸多显著特点。首先&#xff0c;它提供了丰富的组件&#xff0…

Hive基础笔记

安装Hive并连接MySQL ubuntukylin-22.04.1安装Hive、MySQL、配置Hive及Hive连接MySQL操作 启动/退出Hive 启动并登陆mysql shell service mysql start # 启动mysql服务 mysql -u root -p # 登陆shell界面启动hive之前&#xff0c;请先启动hadoop集群 启动hive 进入hive安…

【AIGC】破解ChatGPT!如何使用高价值提示词Prompt提升响应质量

文章目录 为什么高价值提示词如此重要&#xff1f;&#x1f50d;1.1 提升响应的相关性和准确性1.2 节省时间与资源1.3 增强用户体验 了解ChatGPT的工作原理&#x1f9e0;2.1 语言模型的训练过程2.2 上下文理解与生成2.3 限制与挑战 高价值提示词的核心要素✍️3.1 清晰明确的指…

D74【 python 接口自动化学习】- python 基础之HTTP

day74 http基础定义 学习日期&#xff1a;20241120 学习目标&#xff1a;http定义及实战 -- http基础介绍 学习笔记&#xff1a; HTTP定义 HTTP 是一个协议&#xff08;服务器传输超文本到浏览器的传送协议&#xff09;&#xff0c;是基于 TCP/IP 通信协议来传递数据&…

YOLOv8-ultralytics-8.2.103部分代码阅读笔记-conv.py

conv.py ultralytics\nn\modules\conv.py 目录 conv.py 1.所需的库和模块 2.def autopad(k, pNone, d1): 3.class Conv(nn.Module): 4.class Conv2(Conv): 5.class LightConv(nn.Module): 6.class DWConv(Conv): 7.class DWConvTranspose2d(nn.ConvTranspose2d)…

2025 -生物信息学- GEO - 神经网络分析-ANN

GEO - 神经网络分析-ANN 01. 准备文件 id GSM3587381_con GSM3587382_con GSM3587383_con GSM3587384_con GSM3587385_con GSM3587386_con GSM3587387_con GSM3587388_con GSM3587389_con GSM3587390_con GSM3587391_con GSM3587392_con GSM3587393_con GSM3587394_con GSM358…

uniapp页面样式和布局和nvue教程详解

uniapp页面样式和布局和nvue教程 尺寸单位 uni-app 支持的通用 css 单位包括 px、rpx px 即屏幕像素。rpx 即响应式px&#xff0c;一种根据屏幕宽度自适应的动态单位。以750宽的屏幕为基准&#xff0c;750rpx恰好为屏幕宽度。屏幕变宽&#xff0c;rpx 实际显示效果会等比放大…

5G Non-Public Network(三)Public Network Integrated NPN

这篇我们来看下PNI-NPN,之前都没有提到NPN引入的背景,这里就简单看下。 NPN引入的背景如上,就不细说了,贴在这里,确实很简单的看了下。紧接着就来看下规范上的内容。 相比于SNPN,PNI-NPN是PLMN提供的NPN,内容也要少很多,下面的内容参考38.300,38.331 ,38.304,23.50…

⾃动化运维利器Ansible-基础

Ansible基础 一、工作原理二、快速入门2.1 测试所有资产的网络连通性2.2 发布文件到被管理节点(资产) 三、资产(被管理节点)3.1 静态资产3.1.1 自定义资产3.1.2 自定义资产的使用3.1.3 资产选择器 四、Ansible Ad-Hoc 命令4.1 模块类型4.1.1 command & shell 模块4.1.2 cop…

一文了解Android中的AudioFlinger

AudioFlinger 是 Android 音频框架中的一个核心组件&#xff0c;负责管理音频流的混合和输出。它是 Android 音频系统服务的一部分&#xff0c;作为音频框架和硬件之间的桥梁&#xff0c;接收应用程序的音频请求、进行混音处理&#xff0c;并最终通过音频硬件输出声音。 下面我…

基于YOLOv8深度学习的智慧交通事故评级检测系统研究与实现(PyQt5界面+数据集+训练代码)

本文研究并实现了一种基于YOLOv8深度学习模型的智慧交通事故评级检测系统&#xff0c;旨在解决传统交通事故检测过程中效率低、误报率高等问题。该系统通过深度学习技术的应用&#xff0c;结合交通事故图像的分析&#xff0c;能够实现对事故的精准识别和评级&#xff0c;进而为…

以Java为例,实现一个简单的命令行图书管理系统,包括添加图书、删除图书、查找图书等功能。

江河湖海中的代码之旅&#xff1a;打造你的命令行图书管理系统 一、系统简介 1. Java简介 Java&#xff0c;这个编程语言界的“瑞士军刀”&#xff0c;自1995年诞生以来就以其跨平台的特性和强大的生态系统征服了无数开发者的心。想象一下&#xff0c;Java就像是一条蜿蜒曲折…

使用MaxKB搭建知识库问答系统并接入个人网站(halo)

首发地址&#xff08;欢迎大家访问&#xff09;&#xff1a;使用MaxKB搭建知识库问答系统并接入个人网站 前言 从OpenAI推出ChatGPT到现在&#xff0c;大模型已经渗透到各行各业&#xff0c;大模型也逐渐趋于平民化&#xff1b;从最开始对其理解、生成、强大的知识积累的惊叹&…

Android15之解决:Dex checksum does not match for dex:framework.jar问题(二百三十九)

简介&#xff1a; CSDN博客专家、《Android系统多媒体进阶实战》一书作者 新书发布&#xff1a;《Android系统多媒体进阶实战》&#x1f680; 优质专栏&#xff1a; Audio工程师进阶系列【原创干货持续更新中……】&#x1f680; 优质专栏&#xff1a; 多媒体系统工程师系列【…

消息队列原理面试题及参考答案

什么是消息队列? 消息队列是一种在不同应用程序组件或者系统之间进行异步通信的中间件技术。它就像是一个信息的 “中转站”。从技术层面来讲,消息队列主要由消息生产者、消息队列本身和消息消费者这几个核心部分构成。 消息生产者负责创建消息并将其发送到消息队列中。这些消…

ubuntu16.04配置网卡

安装ubuntu16.04到最后选择安装服务时通过空格勾选 网卡 bond1 、集群内机器之间访问无网络限制 操作系统 raid1 数据盘得根据咱们的用途来看做raid几&#xff0c;如果用于ceph 就做单盘 raid0 &#xff0c;其他做raid5 操作系统 bc-euler 21.10 及以上或者 bc-龙蜥 8.2以上…

css 溢出隐藏显示省略号

单行文字超出隐藏&#xff1a; 要使用CSS使超出容器的文本隐藏并以省略号显示&#xff0c;可以使用以下属性&#xff1a; overflow:hidden: 设置为 hidden 以隐藏超出容器的内容。 text-overflow:ellipsis: 设置为 ellipsis 以显示省略号。 white-space:nowrap: 设置为 nowr…