百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT技术 > 正文

在SpringBoot中怎么使用SpringCloud(3)

wptr33 2024-12-07 17:45 37 浏览

在 Spring Boot 中使用 Spring Cloud,主要是通过集成 Spring Cloud 提供的一些功能来构建微服务应用。Spring Cloud 提供了一些有用的组件来支持微服务架构,如服务注册与发现、负载均衡、API 网关、配置管理、断路器等。

下面是如何在 Spring Boot 项目中使用 Spring Cloud 的基本步骤。

1.设置 Spring Boot 项目

首先,确保你已经创建了一个 Spring Boot 项目。你可以使用 Spring Initializr(https://start.spring.io/)来快速生成一个 Spring Boot 项目,选择 Spring Web 和 Spring Boot DevTools 等常见的依赖。

2.添加 Spring Cloud 依赖

在 pom.xml 或 build.gradle 文件中添加 Spring Cloud 相关的依赖。

使用 Maven:

在 pom.xml 文件中,添加 Spring Cloud 相关的依赖,并指定 Spring Cloud 的版本。在 Spring Boot 2.x 和 Spring Cloud 2020.x 版本中,Spring Cloud 提供了一个 BOM(Bill of Materials)来管理依赖的版本。

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2020.0.4</version> <!-- 选择适合的版本 -->
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <!-- 选择你需要的Spring Cloud组件,例如服务注册与发现 -->
    <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-config</artifactId>
    </dependency>

    <!-- Spring Boot Web -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

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

查看全部

使用 Gradle:

dependencyManagement {
    imports {
        mavenBom "org.springframework.cloud:spring-cloud-dependencies:2020.0.4"  // 选择适合的版本
    }
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
    implementation 'org.springframework.cloud:spring-cloud-starter-config'
    implementation 'org.springframework.boot:spring-boot-starter-actuator'
}

3.启用 Spring Cloud 组件

在 application.properties 或 application.yml 配置文件中启用 Spring Cloud 相关组件的功能。

服务注册与发现:Eureka 客户端

例如,如果你想使用 Eureka 作为服务注册与发现框架,你需要添加 @EnableEurekaClient 注解,并配置 Eureka 的相关属性。

在application.yml中配置 Eureka:

spring:
  application:
    name: my-service
  cloud:
    discovery:
      enabled: true
    eureka:
      client:
        service-url:
          defaultZone: http://localhost:8761/eureka # Eureka 服务器地址

在 Spring Boot 主类上启用 Eureka 客户端:

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

@SpringBootApplication
@EnableDiscoveryClient  // 启用服务发现功能
public class MyServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(MyServiceApplication.class, args);
    }
}

服务注册与发现:Eureka 服务器

如果你也想启动一个 Eureka 服务器,可以创建另一个 Spring Boot 项目,并配置为 Eureka 服务器。

在application.yml中配置 Eureka 服务器:

server:
  port: 8761
spring:
  application:
    name: eureka-server
  cloud:
    eureka:
      server:
        enable-self-preservation: false  # 禁用自我保护机制(方便开发测试)
      client:
        register-with-eureka: false   # 该应用作为 Eureka 服务器,不注册自己
      instance:
        hostname: localhost

启动 Eureka 服务器:

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);
    }
}

4.API 网关:Spring Cloud Gateway

如果你想为微服务应用设置一个 API 网关(统一的入口点),你可以使用 Spring Cloud Gateway。它可以帮助你处理请求路由、认证、限流等。

添加依赖:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>

配置 Gateway 路由规则:

在 application.yml 中配置网关路由:

spring:
  cloud:
    gateway:
      routes:
        - id: my-service-route
          uri: lb://MY-SERVICE  # 微服务的名称(Eureka 服务名)
          predicates:
            - Path=/my-service/**  # 以 `/my-service` 开头的请求都会转发到该服务

5.分布式配置管理:Spring Cloud Config

Spring Cloud Config 提供了集中式配置管理服务,允许将配置文件存储在 Git 仓库或文件系统中,微服务应用可以从 Config Server 拉取配置。

配置 Spring Cloud Config 服务器:

  1. 添加 Spring Cloud Config 服务器依赖:
  2. <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency>
  3. 启动 Config Server:
  4. import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer // 启用 Config Server public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } }
  5. 在 application.yml 中配置 Config Server 的 Git 仓库路径:
  6. spring: cloud: config: server: git: uri: https://github.com/my-repo/config-repo # 配置文件的 Git 仓库地址 search-paths: '{application}' # 按服务名查找配置

配置 Spring Cloud Config 客户端:

  1. 添加 spring-cloud-starter-config 依赖:
  2. <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency>
  3. 配置客户端获取配置:
  4. spring: application: name: my-service # 从 Config Server 获取与该名称相关的配置 cloud: config: uri: http://localhost:8888 # Config Server 地址

6.断路器:Hystrix

Spring Cloud 集成了 Netflix Hystrix 作为断路器,用于处理服务间的调用故障。

添加依赖:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

启用 Hystrix 注解:

import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.stereotype.Service;

@Service
public class MyService {

    @HystrixCommand(fallbackMethod = "fallbackMethod")
    public String callExternalService() {
        // 外部服务调用
        return "Success";
    }

    public String fallbackMethod() {
        return "Fallback response";
    }
}

7.启动微服务

  • 启动 Eureka 服务器。
  • 启动服务提供者(如 MyServiceApplication)。
  • 启动 API 网关(如 GatewayApplication),通过网关访问微服务。

通过 Spring Cloud 你可以非常方便地在 Spring Boot 中构建一个完整的微服务架构。通过配置服务发现、负载均衡、API 网关、分布式配置等功能,能够解决许

相关推荐

MySQL进阶五之自动读写分离mysql-proxy

自动读写分离目前,大量现网用户的业务场景中存在读多写少、业务负载无法预测等情况,在有大量读请求的应用场景下,单个实例可能无法承受读取压力,甚至会对业务产生影响。为了实现读取能力的弹性扩展,分担数据库压...

Postgres vs MySQL_vs2022连接mysql数据库

...

3分钟短文 | Laravel SQL筛选两个日期之间的记录,怎么写?

引言今天说一个细分的需求,在模型中,或者使用laravel提供的EloquentORM功能,构造查询语句时,返回位于两个指定的日期之间的条目。应该怎么写?本文通过几个例子,为大家梳理一下。学习时...

一文由浅入深带你完全掌握MySQL的锁机制原理与应用

本文将跟大家聊聊InnoDB的锁。本文比较长,包括一条SQL是如何加锁的,一些加锁规则、如何分析和解决死锁问题等内容,建议耐心读完,肯定对大家有帮助的。为什么需要加锁呢?...

验证Mysql中联合索引的最左匹配原则

后端面试中一定是必问mysql的,在以往的面试中好几个面试官都反馈我Mysql基础不行,今天来着重复习一下自己的弱点知识。在Mysql调优中索引优化又是非常重要的方法,不管公司的大小只要后端项目中用到...

MySQL索引解析(联合索引/最左前缀/覆盖索引/索引下推)

目录1.索引基础...

你会看 MySQL 的执行计划(EXPLAIN)吗?

SQL执行太慢怎么办?我们通常会使用EXPLAIN命令来查看SQL的执行计划,然后根据执行计划找出问题所在并进行优化。用法简介...

MySQL 从入门到精通(四)之索引结构

索引概述索引(index),是帮助MySQL高效获取数据的数据结构(有序),在数据之外,数据库系统还维护者满足特定查询算法的数据结构,这些数据结构以某种方式引用(指向)数据,这样就可以在这些数据结构...

mysql总结——面试中最常问到的知识点

mysql作为开源数据库中的榜一大哥,一直是面试官们考察的重中之重。今天,我们来总结一下mysql的知识点,供大家复习参照,看完这些知识点,再加上一些边角细节,基本上能够应付大多mysql相关面试了(...

mysql总结——面试中最常问到的知识点(2)

首先我们回顾一下上篇内容,主要复习了索引,事务,锁,以及SQL优化的工具。本篇文章接着写后面的内容。性能优化索引优化,SQL中索引的相关优化主要有以下几个方面:最好是全匹配。如果是联合索引的话,遵循最...

MySQL基础全知全解!超详细无废话!轻松上手~

本期内容提醒:全篇2300+字,篇幅较长,可搭配饭菜一同“食”用,全篇无废话(除了这句),干货满满,可收藏供后期反复观看。注:MySQL中语法不区分大小写,本篇中...

深入剖析 MySQL 中的锁机制原理_mysql 锁详解

在互联网软件开发领域,MySQL作为一款广泛应用的关系型数据库管理系统,其锁机制在保障数据一致性和实现并发控制方面扮演着举足轻重的角色。对于互联网软件开发人员而言,深入理解MySQL的锁机制原理...

Java 与 MySQL 性能优化:MySQL分区表设计与性能优化全解析

引言在数据库管理领域,随着数据量的不断增长,如何高效地管理和操作数据成为了一个关键问题。MySQL分区表作为一种有效的数据管理技术,能够将大型表划分为多个更小、更易管理的分区,从而提升数据库的性能和可...

MySQL基础篇:DQL数据查询操作_mysql 查

一、基础查询DQL基础查询语法SELECT字段列表FROM表名列表WHERE条件列表GROUPBY分组字段列表HAVING分组后条件列表ORDERBY排序字段列表LIMIT...

MySql:索引的基本使用_mysql索引的使用和原理

一、索引基础概念1.什么是索引?索引是数据库表的特殊数据结构(通常是B+树),用于...