Spring Boot 3.2 结合 Spring Cloud 微服务架构实操指南 现代分布式应用系统构建实战教程

简介: Spring Boot 3.2 + Spring Cloud 2023.0 微服务架构实践摘要 本文基于Spring Boot 3.2.5和Spring Cloud 2023.0.1最新稳定版本,演示现代微服务架构的构建过程。主要内容包括: 技术栈选择:采用Spring Cloud Netflix Eureka 4.1.0作为服务注册中心,Resilience4j 2.1.0替代Hystrix实现熔断机制,配合OpenFeign和Gateway等组件。 核心实操步骤: 搭建Eureka注册中心服务 构建商品

Spring Boot 3.2 + Spring Cloud 2023.0 实操指南:构建现代微服务架构

技术栈选择说明

本文将基于最新稳定版本构建完整微服务体系:

  • Spring Boot 3.2.5(最新稳定版)
  • Spring Cloud 2023.0.1(代号"Ilford",与Boot 3.2.x兼容)
  • 服务注册发现:Spring Cloud Netflix Eureka 4.1.0
  • 服务调用:Spring Cloud OpenFeign 4.1.0
  • API网关:Spring Cloud Gateway 4.1.0
  • 配置中心:Spring Cloud Config 4.1.0
  • 服务熔断:Resilience4j 2.1.0(替代Hystrix)

选择理由:Spring Cloud 2023.0.x是目前最新的稳定版本系列,全面支持Spring Boot 3.2.x,移除了大量过时组件,采用Resilience4j作为官方推荐的熔断方案,更符合现代微服务架构需求。

实操步骤:构建基础微服务架构

1. 搭建Eureka服务注册中心

服务注册中心是微服务架构的核心基础设施,负责服务地址的管理。

步骤1:创建Maven项目,添加依赖

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>3.2.5</version>
</parent>

<dependencies>
    <!-- Eureka Server -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
    </dependency>

    <!--  actuator用于监控 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2023.0.1</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

步骤2:创建启动类,添加@EnableEurekaServer注解

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer // 启用Eureka服务注册中心功能
public class EurekaServerApplication {
   
    public static void main(String[] args) {
   
        SpringApplication.run(EurekaServerApplication.class, args);
    }
}

步骤3:配置application.yml

server:
  port: 8761  # Eureka默认端口

eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false  # 自身不注册到注册中心
    fetch-registry: false        # 不需要从注册中心获取服务信息
    service-url:
      defaultZone: http://${
   eureka.instance.hostname}:${
   server.port}/eureka/
  server:
    enable-self-preservation: false  # 关闭自我保护模式(生产环境建议开启)
    eviction-interval-timer-in-ms: 30000  # 清理无效节点的间隔时间

启动验证:访问 http://localhost:8761 可看到Eureka控制台界面,此时还没有服务注册。

2. 构建服务提供者

我们创建一个简单的商品服务(product-service)作为服务提供者。

步骤1:添加依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>

步骤2:创建启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient // 启用服务发现客户端功能
public class ProductServiceApplication {
   
    public static void main(String[] args) {
   
        SpringApplication.run(ProductServiceApplication.class, args);
    }
}

步骤3:配置application.yml

server:
  port: 8081

spring:
  application:
    name: product-service  # 服务名称,消费者将通过此名称调用

eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
  instance:
    prefer-ip-address: true  # 注册时使用IP地址
    instance-id: ${
   spring.cloud.client.ip-address}:${
   server.port}  # 显示IP和端口

步骤4:创建业务接口

import org.springframework.web.bind.annotation.*;

import java.util.HashMap;
import java.util.Map;

@RestController
@RequestMapping("/products")
public class ProductController {
   

    // 模拟数据库存储
    private static final Map<Long, Product> productMap = new HashMap<>();

    static {
   
        productMap.put(1L, new Product(1L, "Spring Boot实战", 59.9));
        productMap.put(2L, new Product(2L, "Spring Cloud微服务", 69.9));
    }

    @GetMapping("/{id}")
    public Product getProduct(@PathVariable Long id) {
   
        // 模拟服务调用延迟
        try {
   
            Thread.sleep(500);
        } catch (InterruptedException e) {
   
            Thread.currentThread().interrupt();
        }

        Product product = productMap.get(id);
        if (product == null) {
   
            throw new RuntimeException("产品不存在");
        }
        return product;
    }

    @PostMapping
    public Product createProduct(@RequestBody Product product) {
   
        productMap.put(product.getId(), product);
        return product;
    }

    // 内部静态类
    public static class Product {
   
        private Long id;
        private String name;
        private Double price;

        // 构造函数、getter和setter省略
        public Product() {
   }

        public Product(Long id, String name, Double price) {
   
            this.id = id;
            this.name = name;
            this.price = price;
        }

        // getter和setter
        public Long getId() {
    return id; }
        public void setId(Long id) {
    this.id = id; }
        public String getName() {
    return name; }
        public void setName(String name) {
    this.name = name; }
        public Double getPrice() {
    return price; }
        public void setPrice(Double price) {
    this.price = price; }
    }
}

启动验证:启动服务后,访问Eureka控制台(http://localhost:8761),可看到PRODUCT-SERVICE已注册。

3. 构建服务消费者(使用OpenFeign)

创建订单服务(order-service)作为服务消费者,通过OpenFeign调用商品服务。

步骤1:添加依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-openfeign</artifactId>
    </dependency>
    <!-- 熔断依赖 -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-circuitbreaker-resilience4j</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>

步骤2:创建启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients // 启用Feign客户端
public class OrderServiceApplication {
   
    public static void main(String[] args) {
   
        SpringApplication.run(OrderServiceApplication.class, args);
    }
}

步骤3:配置application.yml

server:
  port: 8082

spring:
  application:
    name: order-service

eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
  instance:
    prefer-ip-address: true
    instance-id: ${
   spring.cloud.client.ip-address}:${
   server.port}

# Resilience4j配置
resilience4j:
  circuitbreaker:
    instances:
      productService:
        sliding-window-size: 10
        failure-rate-threshold: 50
        wait-duration-in-open-state: 10000
        permitted-number-of-calls-in-half-open-state: 3
  retry:
    instances:
      productService:
        max-retry-attempts: 3
        wait-duration: 1000

步骤4:创建Feign客户端

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;

// 指定要调用的服务名称
@FeignClient(name = "product-service")
public interface ProductFeignClient {
   

    @GetMapping("/products/{id}")
    Product getProduct(@PathVariable("id") Long id);

    // 产品实体类,与服务提供者保持一致
    class Product {
   
        private Long id;
        private String name;
        private Double price;

        // getter和setter省略
        public Long getId() {
    return id; }
        public void setId(Long id) {
    this.id = id; }
        public String getName() {
    return name; }
        public void setName(String name) {
    this.name = name; }
        public Double getPrice() {
    return price; }
        public void setPrice(Double price) {
    this.price = price; }
    }
}

步骤5:创建服务和控制器

import io.github.resilience4j.circuitbreaker.annotation.CircuitBreaker;
import io.github.resilience4j.retry.annotation.Retry;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/orders")
public class OrderController {
   

    @Autowired
    private ProductFeignClient productFeignClient;

    // 使用熔断和重试机制
    @GetMapping("/{productId}")
    @CircuitBreaker(name = "productService", fallbackMethod = "getOrderFallback")
    @Retry(name = "productService")
    public Order getOrder(@PathVariable Long productId) {
   
        ProductFeignClient.Product product = productFeignClient.getProduct(productId);
        return new Order(System.currentTimeMillis(), productId, product.getName(), 1, product.getPrice());
    }

    // 熔断降级方法
    public Order getOrderFallback(Long productId, Exception e) {
   
        return new Order(System.currentTimeMillis(), productId, "降级商品", 1, 0.0);
    }

    // 订单实体类
    public static class Order {
   
        private Long id;
        private Long productId;
        private String productName;
        private Integer quantity;
        private Double price;

        // 构造函数、getter和setter省略
        public Order(Long id, Long productId, String productName, Integer quantity, Double price) {
   
            this.id = id;
            this.productId = productId;
            this.productName = productName;
            this.quantity = quantity;
            this.price = price;
        }

        // getter和setter
        public Long getId() {
    return id; }
        public void setId(Long id) {
    this.id = id; }
        public Long getProductId() {
    return productId; }
        public void setProductId(Long productId) {
    this.productId = productId; }
        public String getProductName() {
    return productName; }
        public void setProductName(String productName) {
    this.productName = productName; }
        public Integer getQuantity() {
    return quantity; }
        public void setQuantity(Integer quantity) {
    this.quantity = quantity; }
        public Double getPrice() {
    return price; }
        public void setPrice(Double price) {
    this.price = price; }
    }
}

验证服务调用

  1. 启动order-service
  2. 访问 http://localhost:8082/orders/1
  3. 应返回包含产品信息的订单数据

4. 配置Spring Cloud Gateway

API网关作为微服务的入口,负责路由转发、负载均衡、认证授权等功能。

步骤1:创建网关项目,添加依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-gateway</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>

注意:Spring Cloud Gateway基于Netty和WebFlux,不能与spring-boot-starter-web(Servlet)同时使用,会导致冲突。

步骤2:创建启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient
public class GatewayApplication {
   
    public static void main(String[] args) {
   
        SpringApplication.run(GatewayApplication.class, args);
    }
}

步骤3:配置application.yml

server:
  port: 8080  # 网关端口

spring:
  application:
    name: api-gateway
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true  # 启用服务发现定位器
          lower-case-service-id: true  # 服务ID转为小写
      routes:
        - id: product-service
          uri: lb://product-service  # 负载均衡到product-service
          predicates:
            - Path=/api/products/**  # 匹配路径
          filters:
            - StripPrefix=1  # 去除路径前缀/api
            - name: RequestRateLimiter
              args:
                redis-rate-limiter.replenishRate: 10  # 令牌桶填充速率
                redis-rate-limiter.burstCapacity: 20  # 令牌桶容量
                key-resolver: "#{@ipAddressKeyResolver}"  # 基于IP的限流

        - id: order-service
          uri: lb://order-service
          predicates:
            - Path=/api/orders/**
          filters:
            - StripPrefix=1

eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
  instance:
    prefer-ip-address: true

步骤4:配置限流策略

import org.springframework.cloud.gateway.filter.ratelimit.KeyResolver;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import reactor.core.publisher.Mono;

@Configuration
public class GatewayConfig {
   

    // 基于IP地址的限流
    @Bean
    public KeyResolver ipAddressKeyResolver() {
   
        return exchange -> Mono.just(
            exchange.getRequest()
                   .getRemoteAddress()
                   .getAddress()
                   .getHostAddress()
        );
    }
}

验证网关功能

  1. 启动网关服务
  2. 通过网关访问商品服务:http://localhost:8080/api/products/1
  3. 通过网关访问订单服务:http://localhost:8080/api/orders/1

关键技术点说明

  1. 版本兼容性
    Spring Cloud 2023.0.x 与 Spring Boot 3.2.x 完全兼容,但不兼容旧版本Spring Boot。在实际项目中,务必遵循官方的版本兼容矩阵。

  2. Resilience4j替代Hystrix
    从Spring Cloud 2020.0版本开始,Hystrix已被移除,推荐使用Resilience4j。它是一个轻量级、易于使用的熔断库,提供熔断、限流、重试等功能。

  3. Spring Cloud Gateway优势
    相比Zuul网关,Gateway基于非阻塞响应式编程模型,性能更高,支持动态路由、集成Spring生态系统的各种功能,是目前推荐的网关解决方案。

  4. 服务发现机制
    本文使用Eureka作为服务注册中心,在实际项目中也可选择Consul、Nacos等其他方案,配置方式类似,只需替换相应依赖和配置。

扩展与进阶

  1. 配置中心集成
    可添加Spring Cloud Config Server集中管理配置,实现配置的动态更新。

  2. 安全认证
    集成Spring Security和OAuth2,在网关层实现统一的认证授权。

  3. 分布式追踪
    添加Spring Cloud Sleuth和Zipkin实现分布式追踪,便于微服务问题排查。

  4. 监控告警
    结合Spring Boot Actuator、Prometheus和Grafana构建完善的监控告警体系。

通过本文的实操指南,你已掌握基于最新Spring Boot和Spring Cloud构建微服务架构的核心技能。在实际项目中,可根据业务需求进行扩展和优化,构建稳定、高效、可扩展的微服务系统。


Spring Boot 3.2,Spring Cloud 2023.0, 微服务架构,实操指南,分布式应用系统,系统构建,实战教程,微服务开发,分布式架构,Spring 框架,微服务实战,应用系统构建,Java 微服务,Spring 技术栈,分布式开发



代码获取方式
https://pan.quark.cn/s/14fcf913bae6


相关文章
|
10月前
|
人工智能 Java Nacos
基于 Spring AI Alibaba + Nacos 的分布式 Multi-Agent 构建指南
本文将针对 Spring AI Alibaba + Nacos 的分布式多智能体构建方案展开介绍,同时结合 Demo 说明快速开发方法与实际效果。
5522 112
|
10月前
|
负载均衡 Java API
《深入理解Spring》Spring Cloud 构建分布式系统的微服务全家桶
Spring Cloud为微服务架构提供一站式解决方案,涵盖服务注册、配置管理、负载均衡、熔断限流等核心功能,助力开发者构建高可用、易扩展的分布式系统,并持续向云原生演进。
|
10月前
|
XML Java 应用服务中间件
【SpringBoot(一)】Spring的认知、容器功能讲解与自动装配原理的入门,带你熟悉Springboot中基本的注解使用
SpringBoot专栏开篇第一章,讲述认识SpringBoot、Bean容器功能的讲解、自动装配原理的入门,还有其他常用的Springboot注解!如果想要了解SpringBoot,那么就进来看看吧!
792 2
|
10月前
|
Cloud Native Serverless API
微服务架构实战指南:从单体应用到云原生的蜕变之路
🌟蒋星熠Jaxonic,代码为舟的星际旅人。深耕微服务架构,擅以DDD拆分服务、构建高可用通信与治理体系。分享从单体到云原生的实战经验,探索技术演进的无限可能。
微服务架构实战指南:从单体应用到云原生的蜕变之路
|
10月前
|
监控 Cloud Native Java
Spring Boot 3.x 微服务架构实战指南
🌟蒋星熠Jaxonic,技术宇宙中的星际旅人。深耕Spring Boot 3.x与微服务架构,探索云原生、性能优化与高可用系统设计。以代码为笔,在二进制星河中谱写极客诗篇。关注我,共赴技术星辰大海!(238字)
1428 2
Spring Boot 3.x 微服务架构实战指南
|
11月前
|
人工智能 Java 机器人
基于Spring AI Alibaba + Spring Boot + Ollama搭建本地AI对话机器人API
Spring AI Alibaba集成Ollama,基于Java构建本地大模型应用,支持流式对话、knife4j接口可视化,实现高隐私、免API密钥的离线AI服务。
7424 2
基于Spring AI Alibaba + Spring Boot + Ollama搭建本地AI对话机器人API
|
11月前
|
消息中间件 Ubuntu Java
SpringBoot整合MQTT实战:基于EMQX实现双向设备通信
本教程指导在Ubuntu上部署EMQX 5.9.0并集成Spring Boot实现MQTT双向通信,涵盖服务器搭建、客户端配置及生产实践,助您快速构建企业级物联网消息系统。
3087 1
|
11月前
|
缓存 Java 应用服务中间件
Spring Boot配置优化:Tomcat+数据库+缓存+日志,全场景教程
本文详解Spring Boot十大核心配置优化技巧,涵盖Tomcat连接池、数据库连接池、Jackson时区、日志管理、缓存策略、异步线程池等关键配置,结合代码示例与通俗解释,助你轻松掌握高并发场景下的性能调优方法,适用于实际项目落地。
1837 5
存储 JSON Java
983 0
|
11月前
|
存储 安全 Java
管理 Spring 微服务中的分布式会话
在微服务架构中,管理分布式会话是确保用户体验一致性和系统可扩展性的关键挑战。本文探讨了在 Spring 框架下实现分布式会话管理的多种方法,包括集中式会话存储和客户端会话存储(如 Cookie),并分析了它们的优缺点。同时,文章还涵盖了与分布式会话相关的安全考虑,如数据加密、令牌验证、安全 Cookie 政策以及服务间身份验证。此外,文中强调了分布式会话在提升系统可扩展性、增强可用性、实现数据一致性及优化资源利用方面的显著优势。通过合理选择会话管理策略,结合 Spring 提供的强大工具,开发人员可以在保证系统鲁棒性的同时,提供无缝的用户体验。
241 0